Ejemplo n.º 1
0
 //delete
 internal string Delete(int id)
 {
     if (_repo.Delete(id))
     {
         return("Successfully Deleted");
     }
     throw new Exception("Invalid Id");
 }