Example #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;
        }
Example #2
0
 public ApiCustomerCommunicationServerRequestModelValidator(ICustomerCommunicationRepository customerCommunicationRepository)
 {
     this.CustomerCommunicationRepository = customerCommunicationRepository;
 }