コード例 #1
0
 public LeaveBaseProcess(ILeaveApplicationRepo leaveApplicationRepo)
 {
     _leaveApplicationRepo = leaveApplicationRepo;
 }
コード例 #2
0
 public GetEmployeeLeaveApplicationsQueryHandler(ILeaveApplicationRepo repo, IEmployeeRepo employeeRepo)
 {
     _repo         = repo;
     _employeeRepo = employeeRepo;
 }
コード例 #3
0
 public ApproveLeaveCommandQueryHandler(ILeaveApplicationRepo leaveApplicationRepo)
 {
     _repo = leaveApplicationRepo;
 }
 public AddLeaveCommandQueryHandler(ILeaveApplicationRepo repo, IEmployeeRepo employeeRepo)
 {
     _repo         = repo;
     _employeeRepo = employeeRepo;
 }
 public LeaveApplicationProcess(ILeaveApplicationRepo leaveApplicationRepo) : base(leaveApplicationRepo)
 {
 }