示例#1
0
 public County Delete(int id)
 {
     return(_countyRepository.Delete(id));
 }
示例#2
0
 /// <summary>
 /// Deletes a county
 /// </summary>
 /// <param name="county"></param>
 public void Delete(County county)
 {
     _countyRepository.Delete(county);
 }