예제 #1
0
 public async Task SaveCountryAsync(Country country)
 {
     var request = new SaveCountryRequest(MapCountryToCountryDto(country));
     await clientProxy.Execute(client => client.SaveCountryAsync(request));
 }
예제 #2
0
        public void SaveCountry(Country country)
        {
            var request = new SaveCountryRequest(MapCountryToCountryDto(country));

            clientProxy.Execute(client => client.SaveCountry(request));
        }