Skip to content

Commit

Permalink
Merge pull request #4 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
update packages
  • Loading branch information
Ali-YousefiTelori committed Dec 14, 2023
2 parents 12b8ae0 + 1af945d commit dc4f4d8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 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.2</Version>
<Version>0.0.0.3</Version>
<Description>Places UI compoents.</Description>
<Copyright>EasyMicroservices@gmail.com</Copyright>
<PackageTags>component,microcomponent,ui,core,place,places,city,cities,country,countries,province,provinces</PackageTags>
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.2</Version>
<Version>0.0.0.3</Version>
<Description>Places view model.</Description>
<Copyright>EasyMicroservices@gmail.com</Copyright>
<PackageTags>mvvm,viewmodel,viewmodels,modelviewviewmodel,ui,core,place,places,city,country,province,location</PackageTags>
Expand All @@ -19,8 +19,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyMicroservices.PlacesMicroservice.Clients" Version="0.0.0.2" />
<PackageReference Include="EasyMicroservices.UI.Cores.Mvvm" Version="0.0.0.7" />
<PackageReference Include="EasyMicroservices.PlacesMicroservice.Clients" Version="0.0.0.3" />
<PackageReference Include="EasyMicroservices.UI.Cores.Mvvm" Version="0.0.0.9" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public FilterCitiesListViewModel(CityClient cityClient)
SearchCommand.Execute(null);
}

public ICommandAsync SearchCommand { get; set; }
public ICommandAsync DeleteCommand { get; set; }
public IAsyncCommand SearchCommand { get; set; }
public IAsyncCommand DeleteCommand { get; set; }

public Action<CityContract> OnDelete { get; set; }
readonly CityClient _cityClient;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public FilterCountriesListViewModel(CountryClient countryClient)
SearchCommand.Execute(null);
}

public ICommandAsync SearchCommand { get; set; }
public ICommandAsync DeleteCommand { get; set; }
public IAsyncCommand SearchCommand { get; set; }
public IAsyncCommand DeleteCommand { get; set; }

public Action<CountryContract> OnDelete { get; set; }
readonly CountryClient _countryClient;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public FilterProvincesListViewModel(ProvinceClient provinceClient)
SearchCommand.Execute(null);
}

public ICommandAsync SearchCommand { get; set; }
public ICommandAsync DeleteCommand { get; set; }
public IAsyncCommand SearchCommand { get; set; }
public IAsyncCommand DeleteCommand { get; set; }

public Action<ProvinceContract> OnDelete { get; set; }
readonly ProvinceClient _provinceClient;
Expand Down

0 comments on commit dc4f4d8

Please sign in to comment.