Example #1
0
 public void Delete(int id)
 {
     try
     {
         bookData.Delete(id);
     }
     catch (Exception e) {
         throw e;
     }
 }
Example #2
0
 public bool Delete(int id)
 {
     return(_bookData.Delete(id));
 }