public LeaveApplicationManagementService() { _context = new AdminCenterDbContext(); _leaveTypeUnitOfWork = new LeaveTypeUnitOfWork(_context); _leaveApplicationUnitOfWork = new LeaveApplicationUnitOfWork(_context); _employeeUnitOfWork = new EmployeeUnitOfWork(_context); }
public LeaveTypeManagementService() { _context = new AdminCenterDbContext(); _leaveTypeUnitOfWork = new LeaveTypeUnitOfWork(_context); }