public long Delete(int id)
 {
     return(_repo.Delete(id));
 }
 public void Delete(int id)
 {
     _repo.Delete(id);
 }