コード例 #1
0
ファイル: ClientService.cs プロジェクト: daniefer/samples
 public ClientService(
     ILogger <IClientRepository> logger,
     IClientRepository clientRepository,
     IApiClientRequestModelValidator clientModelValidator,
     IBOLClientMapper bolclientMapper,
     IDALClientMapper dalclientMapper,
     IBOLClientCommunicationMapper bolClientCommunicationMapper,
     IDALClientCommunicationMapper dalClientCommunicationMapper,
     IBOLPetMapper bolPetMapper,
     IDALPetMapper dalPetMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper
     )
     : base(logger,
            clientRepository,
            clientModelValidator,
            bolclientMapper,
            dalclientMapper,
            bolClientCommunicationMapper,
            dalClientCommunicationMapper,
            bolPetMapper,
            dalPetMapper,
            bolSaleMapper,
            dalSaleMapper)
 {
 }
コード例 #2
0
 public AbstractEmployeeService(
     ILogger logger,
     IEmployeeRepository employeeRepository,
     IApiEmployeeRequestModelValidator employeeModelValidator,
     IBOLEmployeeMapper bolEmployeeMapper,
     IDALEmployeeMapper dalEmployeeMapper,
     IBOLClientCommunicationMapper bolClientCommunicationMapper,
     IDALClientCommunicationMapper dalClientCommunicationMapper,
     IBOLPipelineStepMapper bolPipelineStepMapper,
     IDALPipelineStepMapper dalPipelineStepMapper,
     IBOLPipelineStepNoteMapper bolPipelineStepNoteMapper,
     IDALPipelineStepNoteMapper dalPipelineStepNoteMapper)
     : base()
 {
     this.employeeRepository           = employeeRepository;
     this.employeeModelValidator       = employeeModelValidator;
     this.bolEmployeeMapper            = bolEmployeeMapper;
     this.dalEmployeeMapper            = dalEmployeeMapper;
     this.bolClientCommunicationMapper = bolClientCommunicationMapper;
     this.dalClientCommunicationMapper = dalClientCommunicationMapper;
     this.bolPipelineStepMapper        = bolPipelineStepMapper;
     this.dalPipelineStepMapper        = dalPipelineStepMapper;
     this.bolPipelineStepNoteMapper    = bolPipelineStepNoteMapper;
     this.dalPipelineStepNoteMapper    = dalPipelineStepNoteMapper;
     this.logger = logger;
 }
コード例 #3
0
 public AbstractClientService(
     ILogger logger,
     IClientRepository clientRepository,
     IApiClientRequestModelValidator clientModelValidator,
     IBOLClientMapper bolClientMapper,
     IDALClientMapper dalClientMapper,
     IBOLClientCommunicationMapper bolClientCommunicationMapper,
     IDALClientCommunicationMapper dalClientCommunicationMapper,
     IBOLPetMapper bolPetMapper,
     IDALPetMapper dalPetMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base()
 {
     this.clientRepository             = clientRepository;
     this.clientModelValidator         = clientModelValidator;
     this.bolClientMapper              = bolClientMapper;
     this.dalClientMapper              = dalClientMapper;
     this.bolClientCommunicationMapper = bolClientCommunicationMapper;
     this.dalClientCommunicationMapper = dalClientCommunicationMapper;
     this.bolPetMapper  = bolPetMapper;
     this.dalPetMapper  = dalPetMapper;
     this.bolSaleMapper = bolSaleMapper;
     this.dalSaleMapper = dalSaleMapper;
     this.logger        = logger;
 }
コード例 #4
0
 public EmployeeService(
     ILogger <IEmployeeRepository> logger,
     IEmployeeRepository employeeRepository,
     IApiEmployeeRequestModelValidator employeeModelValidator,
     IBOLEmployeeMapper bolemployeeMapper,
     IDALEmployeeMapper dalemployeeMapper,
     IBOLClientCommunicationMapper bolClientCommunicationMapper,
     IDALClientCommunicationMapper dalClientCommunicationMapper,
     IBOLPipelineStepMapper bolPipelineStepMapper,
     IDALPipelineStepMapper dalPipelineStepMapper,
     IBOLPipelineStepNoteMapper bolPipelineStepNoteMapper,
     IDALPipelineStepNoteMapper dalPipelineStepNoteMapper
     )
     : base(logger,
            employeeRepository,
            employeeModelValidator,
            bolemployeeMapper,
            dalemployeeMapper,
            bolClientCommunicationMapper,
            dalClientCommunicationMapper,
            bolPipelineStepMapper,
            dalPipelineStepMapper,
            bolPipelineStepNoteMapper,
            dalPipelineStepNoteMapper)
 {
 }
コード例 #5
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;
 }