public void Update(EmployeeLeaveInformation entity)
 {
     _employeeLeaveInformationRepository.Update(entity);
 }
 public void Delete(EmployeeLeaveInformation entity)
 {
     _employeeLeaveInformationRepository.Delete(entity);
 }
 public void Add(EmployeeLeaveInformation entity)
 {
     _employeeLeaveInformationRepository.Add(entity);
 }