Exemple #1
0
        public GetEmployeeSavingInfoQueryHandler(IEmployeeService employeeService, IAttributeInfoService attributeInfoService)
        {
            ArgumentHelper.EnsureNotNull(nameof(employeeService), employeeService);
            ArgumentHelper.EnsureNotNull(nameof(attributeInfoService), attributeInfoService);

            _employeeService      = employeeService;
            _attributeInfoService = attributeInfoService;
        }
Exemple #2
0
        public SaveEmployeeCommandValidator(IEmployeeService employeeService, IAttributeInfoService attributeInfoService)
        {
            ArgumentHelper.EnsureNotNull(nameof(employeeService), employeeService);
            ArgumentHelper.EnsureNotNull(nameof(attributeInfoService), attributeInfoService);

            _employeeService      = employeeService;
            _attributeInfoService = attributeInfoService;
        }
 public AddDocumentCommandHandler(
     IEmployeeService employeeService,
     IAttributeInfoService attributeInfoService,
     IDocumentService documentService)
 {
     _employeeService      = employeeService;
     _attributeInfoService = attributeInfoService;
     _documentService      = documentService;
 }
 public AddDocumentValidator(
     IEmployeeService employeeService,
     IAttributeInfoService attributeInfoService,
     IDocumentService documentService)
 {
     _employeeService      = employeeService;
     _attributeInfoService = attributeInfoService;
     _documentService      = documentService;
 }
Exemple #5
0
 public DeleteDocumentValidator(
     IDocumentService documentService,
     IEmployeeService employeeService,
     IAttributeInfoService attributeInfoService)
 {
     _documentService      = documentService;
     _employeeService      = employeeService;
     _attributeInfoService = attributeInfoService;
 }
        public GetAttributesQueryHandler(IAttributeInfoService attributeInfoService)
        {
            ArgumentHelper.EnsureNotNull(nameof(attributeInfoService), attributeInfoService);

            _attributeInfoService = attributeInfoService;
        }
Exemple #7
0
        public SaveAttributeCommandValidator(IAttributeInfoService attributeInfoService)
        {
            ArgumentHelper.EnsureNotNull(nameof(attributeInfoService), attributeInfoService);

            _attributeInfoService = attributeInfoService;
        }
Exemple #8
0
        public GetAttributeSavingInfoQueryValidator(IAttributeInfoService attributeInfoService)
        {
            ArgumentHelper.EnsureNotNull(nameof(attributeInfoService), attributeInfoService);

            _attributeInfoService = attributeInfoService;
        }
Exemple #9
0
 public GetDocumentQueryHandler(IEmployeeService employeeService, IAttributeInfoService attributeInfoService, IDocumentService documentService)
 {
     _employeeService      = employeeService;
     _attributeInfoService = attributeInfoService;
     _documentService      = documentService;
 }
 public DeleteAttributeCommandValidator(IAttributeInfoService attributeInfoService)
 {
     _attributeInfoService = attributeInfoService;
 }
 public DeleteAttributeCommandHandler(IAttributeInfoService attributeInfoService)
 {
     _attributeInfoService = attributeInfoService;
 }