public EmployeeLeaveInformationService(IEmployeeLeaveInformationRepository employeeLeaveInformationRepository)
     : base(employeeLeaveInformationRepository)
 {
     _employeeLeaveInformationRepository = employeeLeaveInformationRepository;
 }
 public EmployeeLeaveInformationService(IEmployeeLeaveInformationRepository employeeLeaveInformationRepository, IUnitOfWork unitOfWork)
 {
     this._employeeLeaveInformationRepository = employeeLeaveInformationRepository;
     this._unitOfWork = unitOfWork;
 }