public bool Update(AbsenceAllocation entity)
 {
     _db.AbsenceAllocations.Update(entity);
     return(Save());
 }
 public bool Delete(AbsenceAllocation entity)
 {
     _db.AbsenceAllocations.Remove(entity);
     return(Save());
 }