public bool Delete(Author entity)
 {
     return(_authorDAL.Delete(entity) > 0);
 }
Exemple #2
0
 public bool Delete(Author model)
 {
     return(_authorDAL.Delete(model) > 0);
 }