Пример #1
0
 public void DeleteCountry(LocationsCountryRecord record)
 {
     _countryRepository.Delete(record);
 }
Пример #2
0
 public void UpdateCountry(LocationsCountryRecord record)
 {
     _countryRepository.Update(record);
 }
Пример #3
0
 public void AddCountry(LocationsCountryRecord record)
 {
     _countryRepository.Create(record);
 }
Пример #4
0
 public void SetDefaulCountry(LocationsCountryRecord record)
 {
     if (record != null) {
         SetDefaulCountryId(record.Id);
     }
 }