public ClientCommunicationService( ILogger <IClientCommunicationRepository> logger, IClientCommunicationRepository clientCommunicationRepository, IApiClientCommunicationRequestModelValidator clientCommunicationModelValidator, IBOLClientCommunicationMapper bolclientCommunicationMapper, IDALClientCommunicationMapper dalclientCommunicationMapper) : base(logger, clientCommunicationRepository, clientCommunicationModelValidator, bolclientCommunicationMapper, dalclientCommunicationMapper) { }
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; }