Skip to content

Commit 9c7a724

Browse files
author
Jani Giannoudis
committed
ndepend cleanup
updated version to 0.9.0-beta.8
1 parent fb17f87 commit 9c7a724

17 files changed

+20
-19
lines changed

Core/PayrollEngine.WebApp.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="PayrollEngine.Client.Core" Version="0.9.0-beta.7" />
15+
<PackageReference Include="PayrollEngine.Client.Core" Version="0.9.0-beta.8" />
1616
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.8" />
1717
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
1818
<PackageReference Include="Microsoft.JSInterop" Version="9.0.8" />

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
5-
<Version>0.9.0-beta.7</Version>
5+
<Version>0.9.0-beta.8</Version>
66
<FileVersion>0.9.0</FileVersion>
7-
<InformationalVersion>0.9.0-beta.7</InformationalVersion>
7+
<InformationalVersion>0.9.0-beta.8</InformationalVersion>
88
<Authors>Jani Giannoudis</Authors>
99
<Company>Software Consulting Giannoudis</Company>
1010
<Copyright>2025 Software Consulting Giannoudis</Copyright>

Presentation/AttributeItem.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Text.Json.Serialization;
33
using System.ComponentModel.DataAnnotations;
4+
using System.Globalization;
45

56
namespace PayrollEngine.WebApp.Presentation;
67

@@ -64,7 +65,7 @@ public decimal ValuesAsNumber
6465
}
6566
if (Value is string stringValue && !string.IsNullOrWhiteSpace(stringValue))
6667
{
67-
if (decimal.TryParse(stringValue, out var value))
68+
if (decimal.TryParse(stringValue, CultureInfo.InvariantCulture, out var value))
6869
{
6970
return value;
7071
}

Presentation/PayrollEngine.WebApp.Presentation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.8" />
11-
<PackageReference Include="PayrollEngine.Document" Version="0.9.0-beta.7" />
11+
<PackageReference Include="PayrollEngine.Document" Version="0.9.0-beta.8" />
1212
<PackageReference Include="MudBlazor" Version="8.11.0" />
1313
<PackageReference Include="NPOI" Version="2.7.4" />
1414
</ItemGroup>

Presentation/Regulation/Component/CaseBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace PayrollEngine.WebApp.Presentation.Regulation.Component;
1111

12-
internal class CaseBrowser : ItemBrowserBase
12+
internal sealed class CaseBrowser : ItemBrowserBase
1313
{
1414
internal CaseBrowser(Tenant tenant, Payroll payroll, List<Client.Model.Regulation> regulations,
1515
IPayrollService payrollService, ICaseService caseService) :

Presentation/Regulation/Component/CaseFieldBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace PayrollEngine.WebApp.Presentation.Regulation.Component;
1111

12-
internal class CaseFieldBrowser : ItemBrowserBase
12+
internal sealed class CaseFieldBrowser : ItemBrowserBase
1313
{
1414
internal CaseFieldBrowser(Tenant tenant, Payroll payroll, List<Client.Model.Regulation> regulations,
1515
IPayrollService payrollService, ICaseService caseService, ICaseFieldService caseFieldService) :

Presentation/Regulation/Component/CaseRelationBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace PayrollEngine.WebApp.Presentation.Regulation.Component;
1111

12-
internal class CaseRelationBrowser : ItemBrowserBase
12+
internal sealed class CaseRelationBrowser : ItemBrowserBase
1313
{
1414
internal CaseRelationBrowser(Tenant tenant, Payroll payroll, List<Client.Model.Regulation> regulations,
1515
IPayrollService payrollService, ICaseRelationService caseRelationService) :

Presentation/Regulation/Component/CollectorBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace PayrollEngine.WebApp.Presentation.Regulation.Component;
1111

12-
internal class CollectorBrowser : ItemBrowserBase
12+
internal sealed class CollectorBrowser : ItemBrowserBase
1313
{
1414
internal CollectorBrowser(Tenant tenant, Payroll payroll, List<Client.Model.Regulation> regulations,
1515
IPayrollService payrollService, ICollectorService collectorService) :

Presentation/Regulation/Component/LookupBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace PayrollEngine.WebApp.Presentation.Regulation.Component;
1111

12-
internal class LookupBrowser : ItemBrowserBase
12+
internal sealed class LookupBrowser : ItemBrowserBase
1313
{
1414
internal LookupBrowser(Tenant tenant, Payroll payroll, List<Client.Model.Regulation> regulations,
1515
IPayrollService payrollService, ILookupService lookupService) :

Presentation/Regulation/Component/LookupValueBrowser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace PayrollEngine.WebApp.Presentation.Regulation.Component;
1111

12-
internal class LookupValueBrowser : ItemBrowserBase
12+
internal sealed class LookupValueBrowser : ItemBrowserBase
1313
{
1414
internal LookupValueBrowser(Tenant tenant, Payroll payroll, List<Client.Model.Regulation> regulations,
1515
IPayrollService payrollService, ILookupService lookupService, ILookupValueService lookupValueService) :

0 commit comments

Comments
 (0)