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