public bool Delete(LeaveAllocations entity)
 {
     _db.LeaveAllocations.Remove(entity);
     return(Save());
 }
 public bool Update(LeaveAllocations entity)
 {
     _db.LeaveAllocations.Update(entity);
     return(Save());
 }
 public bool Create(LeaveAllocations entity)
 {
     _db.LeaveAllocations.Add(entity);
     return(Save());
 }