Exemplo n.º 1
0
        public CustomerCommunicationService(
            ILogger <ICustomerCommunicationService> logger,
            MediatR.IMediator mediator,
            ICustomerCommunicationRepository customerCommunicationRepository,
            IApiCustomerCommunicationServerRequestModelValidator customerCommunicationModelValidator,
            IDALCustomerCommunicationMapper dalCustomerCommunicationMapper)
            : base()
        {
            this.CustomerCommunicationRepository     = customerCommunicationRepository;
            this.CustomerCommunicationModelValidator = customerCommunicationModelValidator;
            this.DalCustomerCommunicationMapper      = dalCustomerCommunicationMapper;
            this.logger = logger;

            this.mediator = mediator;
        }
Exemplo n.º 2
0
        public EmployeeService(
            ILogger <IEmployeeService> logger,
            MediatR.IMediator mediator,
            IEmployeeRepository employeeRepository,
            IApiEmployeeServerRequestModelValidator employeeModelValidator,
            IDALEmployeeMapper dalEmployeeMapper,
            IDALCustomerCommunicationMapper dalCustomerCommunicationMapper,
            IDALPipelineStepMapper dalPipelineStepMapper,
            IDALPipelineStepNoteMapper dalPipelineStepNoteMapper)
            : base()
        {
            this.EmployeeRepository             = employeeRepository;
            this.EmployeeModelValidator         = employeeModelValidator;
            this.DalEmployeeMapper              = dalEmployeeMapper;
            this.DalCustomerCommunicationMapper = dalCustomerCommunicationMapper;
            this.DalPipelineStepMapper          = dalPipelineStepMapper;
            this.DalPipelineStepNoteMapper      = dalPipelineStepNoteMapper;
            this.logger = logger;

            this.mediator = mediator;
        }