Skip to content

Commit

Permalink
update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Dec 24, 2023
1 parent 73d5684 commit 3ba6e17
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 58 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.14</Version>
<Version>0.0.0.15</Version>
<Description>ordering UI compoents.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>component,microcomponent,ui,core,order,ordering</PackageTags>
Expand All @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MudBlazor" Version="6.11.1" />
<PackageReference Include="MudBlazor" Version="6.11.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.14</Version>
<Version>0.0.0.15</Version>
<Description>ordering view model.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>mvvm,viewmodel,viewmodels,modelviewviewmodel,ui,core,order,ordering</PackageTags>
Expand All @@ -19,8 +19,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyMicroservices.OrderingMicroservice.Clients" Version="0.0.0.8" />
<PackageReference Include="EasyMicroservices.UI.Cores.Mvvm" Version="0.0.0.9" />
<PackageReference Include="EasyMicroservices.OrderingMicroservice.Clients" Version="0.0.0.10" />
<PackageReference Include="EasyMicroservices.UI.Cores.Mvvm" Version="0.0.0.13" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,6 @@ await _countingUnitClient.AddAsync(new CreateCountingUnitRequestContract()
Clear();
}

public override Task OnError(Exception exception)
{
return base.OnError(exception);
}

public override Task DisplayFetchError(ServiceContracts.ErrorContract errorContract)
{
return base.DisplayFetchError(errorContract);
}

public async Task UpdateCountingUnit()

Check warning on line 83 in src/CSharp/Cores/EasyMicroservices.UI.Ordering.ViewModels/ViewModels/CountingUnits/AddOrUpdateCountingUnitViewModel.cs

View workflow job for this annotation

GitHub Actions / os-tests

Missing XML comment for publicly visible type or member 'AddOrUpdateCountingUnitViewModel.UpdateCountingUnit()'

Check warning on line 83 in src/CSharp/Cores/EasyMicroservices.UI.Ordering.ViewModels/ViewModels/CountingUnits/AddOrUpdateCountingUnitViewModel.cs

View workflow job for this annotation

GitHub Actions / os-tests

Missing XML comment for publicly visible type or member 'AddOrUpdateCountingUnitViewModel.UpdateCountingUnit()'
{
await _countingUnitClient.UpdateChangedValuesOnlyAsync(new UpdateCountingUnitRequestContract()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ private async Task Search()
IsDeleted = false,
Index = Index,
Length = Length,
SortColumnNames = SortColumnNames
}).AsCheckedResult(x => (x.Result, x.TotalCount));

CountingUnits.Clear();
Expand All @@ -68,16 +67,6 @@ await _countingUnitClient.SoftDeleteByIdAsync(new Int64SoftDeleteRequestContract
CountingUnits.Remove(contract);
OnDelete?.Invoke(contract);
}

public override Task OnError(Exception exception)
{
return base.OnError(exception);
}

public override Task DisplayFetchError(ServiceContracts.ErrorContract errorContract)
{
return base.DisplayFetchError(errorContract);
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,5 @@ await _orderClient.SoftDeleteByIdAsync(new Int64SoftDeleteRequestContract()
Orders.Remove(contract);
OnDelete?.Invoke(contract);
}

public override Task OnError(Exception exception)
{
return base.OnError(exception);
}

public override Task DisplayFetchError(ServiceContracts.ErrorContract errorContract)
{
return base.DisplayFetchError(errorContract);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -123,16 +123,6 @@ await _productClient.AddAsync(new CreateProductRequestContract()
Clear();
}

public override Task OnError(Exception exception)
{
return base.OnError(exception);
}

public override Task DisplayFetchError(ServiceContracts.ErrorContract errorContract)
{
return base.DisplayFetchError(errorContract);
}

public async Task UpdateProduct()
{
await _productClient.UpdateChangedValuesOnlyAsync(new UpdateProductRequestContract()
Expand Down Expand Up @@ -184,7 +174,7 @@ public async Task LoadConfig()
{
var items = await _countingUnitClient.GetAllByLanguageAsync(new GetByLanguageRequestContract()
{
Language = "fa-IR"
LanguageShortName = "fa-IR"
}).AsCheckedResult(x => x.Result);
CountingUnits = items;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ private async Task Search()
IsDeleted = false,
Index = Index,
Length = Length,
SortColumnNames = SortColumnNames
}).AsCheckedResult(x => (x.Result, x.TotalCount));

Products.Clear();
Expand All @@ -68,16 +67,6 @@ await _productClient.SoftDeleteByIdAsync(new Int64SoftDeleteRequestContract()
Products.Remove(contract);
OnDelete?.Invoke(contract);
}

public override Task OnError(Exception exception)
{
return base.OnError(exception);
}

public override Task DisplayFetchError(ServiceContracts.ErrorContract errorContract)
{
return base.DisplayFetchError(errorContract);
}
}
}

0 comments on commit 3ba6e17

Please sign in to comment.