Ejemplo n.º 1
0
 public void DeleteCountry(LocationsCountryRecord record)
 {
     _countryRepository.Delete(record);
 }
Ejemplo n.º 2
0
 public void UpdateCountry(LocationsCountryRecord record)
 {
     _countryRepository.Update(record);
 }
Ejemplo n.º 3
0
 public void AddCountry(LocationsCountryRecord record)
 {
     _countryRepository.Create(record);
 }
Ejemplo n.º 4
0
 public void SetDefaulCountry(LocationsCountryRecord record)
 {
     if (record != null) {
         SetDefaulCountryId(record.Id);
     }
 }