public ValidateRequestedPaidTimeOffHoursQueryHandler(
     IApplicationReadDbFacade facade,
     PaidTimeOffRequestService paidTimeOffRequestService,
     IViewModelToDomainEntityMapper <ValidateRequestedPaidTimeOffHoursViewModel, PaidTimeOffRequest> mapper)
 {
     this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
     this.paidTimeOffRequestService = paidTimeOffRequestService ?? throw new ArgumentNullException(nameof(paidTimeOffRequestService));
     this.mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
Exemple #2
0
 public GetPaidTimeOffPolicyDetailQueryHandler(IApplicationReadDbFacade queryFacade)
 {
     this.queryFacade = queryFacade ?? throw new ArgumentNullException(nameof(queryFacade));
 }
 public GetHasTenantAccessQueryHandler(IApplicationReadDbFacade facade)
 {
     this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
 }
 public GetTenantIdFromSlugQueryHandler(IApplicationReadDbFacade facade)
 {
     this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
 }
Exemple #5
0
 public GetAuthorizedTenantsForUserQueryHandler(IApplicationReadDbFacade facade)
 {
     this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
 }
Exemple #6
0
 public GetUserStatusQueryHandler(IApplicationReadDbFacade facade)
 {
     this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
 }
 public GetEmployeeListQueryHandler(IApplicationReadDbFacade queryFacade) => this.queryFacade = queryFacade ?? throw new ArgumentNullException(nameof(queryFacade));
 public GetIsTenantOwnedByCustomerQueryHandler(IApplicationReadDbFacade queryFacade) => this.queryFacade = queryFacade ?? throw new ArgumentNullException(nameof(queryFacade));
Exemple #9
0
 public GetPaidTimeOffPolicyListQueryHandler(IApplicationReadDbFacade facade) => this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
Exemple #10
0
 public GetTenantEmployeesForUserQueryHandler(IApplicationReadDbFacade facade) => this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
Exemple #11
0
 public GetTenantIdFromAssignmentKeyQueryHandler(IApplicationReadDbFacade facade) => this.facade = facade ?? throw new ArgumentNullException(nameof(facade));
 public GetTenantQueryHandler(IApplicationReadDbFacade queryFacade)
 {
     this.queryFacade = queryFacade ?? throw new ArgumentNullException(nameof(queryFacade));
 }