Exemplo n.º 1
0
 public LeaveBaseProcess(ILeaveApplicationRepo leaveApplicationRepo)
 {
     _leaveApplicationRepo = leaveApplicationRepo;
 }
Exemplo n.º 2
0
 public GetEmployeeLeaveApplicationsQueryHandler(ILeaveApplicationRepo repo, IEmployeeRepo employeeRepo)
 {
     _repo         = repo;
     _employeeRepo = employeeRepo;
 }
Exemplo n.º 3
0
 public ApproveLeaveCommandQueryHandler(ILeaveApplicationRepo leaveApplicationRepo)
 {
     _repo = leaveApplicationRepo;
 }
 public AddLeaveCommandQueryHandler(ILeaveApplicationRepo repo, IEmployeeRepo employeeRepo)
 {
     _repo         = repo;
     _employeeRepo = employeeRepo;
 }
 public LeaveApplicationProcess(ILeaveApplicationRepo leaveApplicationRepo) : base(leaveApplicationRepo)
 {
 }