Esempio n. 1
0
 /// <summary>
 /// Used to delete Region by id
 /// </summary>
 /// <param name="id">holds the region id</param>
 public async Task DeleteById(int id)
 {
     await _regionRepository.DeleteById(id);
 }
Esempio n. 2
0
 public int DeleteById(Guid id)
 {
     return(_regionRepository.DeleteById(id));
 }