Пример #1
0
 public async Task <ActionResult> Put([FromRoute] int id, CountryCreationDTO countryCreationDTO)
 {
     return(await Put <CountryCreationDTO, Country>(id, countryCreationDTO));
 }
Пример #2
0
 public async Task <ActionResult> Post(CountryCreationDTO countryCreationDTO)
 {
     return(await Post <CountryCreationDTO, Country, CountryDTO>(countryCreationDTO, "GetCountry"));
 }