Exemple #1
0
 public ClientCommunicationService(
     ILogger <IClientCommunicationRepository> logger,
     IClientCommunicationRepository clientCommunicationRepository,
     IApiClientCommunicationRequestModelValidator clientCommunicationModelValidator,
     IBOLClientCommunicationMapper bolclientCommunicationMapper,
     IDALClientCommunicationMapper dalclientCommunicationMapper)
     : base(logger,
            clientCommunicationRepository,
            clientCommunicationModelValidator,
            bolclientCommunicationMapper,
            dalclientCommunicationMapper)
 {
 }
Exemple #2
0
 public AbstractClientCommunicationService(
     ILogger logger,
     IClientCommunicationRepository clientCommunicationRepository,
     IApiClientCommunicationRequestModelValidator clientCommunicationModelValidator,
     IBOLClientCommunicationMapper bolClientCommunicationMapper,
     IDALClientCommunicationMapper dalClientCommunicationMapper)
     : base()
 {
     this.ClientCommunicationRepository     = clientCommunicationRepository;
     this.ClientCommunicationModelValidator = clientCommunicationModelValidator;
     this.BolClientCommunicationMapper      = bolClientCommunicationMapper;
     this.DalClientCommunicationMapper      = dalClientCommunicationMapper;
     this.logger = logger;
 }