예제 #1
0
 public CountryDto GetCountry(GetCountryInput input)
 {
     return(Mapper.Map <CountryDto>(_countryRepository.FirstOrDefault(c => c.Id == input.CountryId)));
 }