Exemplo n.º 1
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;
 }
Exemplo n.º 2
0
 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)
 {
 }
Exemplo n.º 3
0
 public SaleService(
     ILogger <ISaleRepository> logger,
     ISaleRepository saleRepository,
     IApiSaleRequestModelValidator saleModelValidator,
     IBOLSaleMapper bolsaleMapper,
     IDALSaleMapper dalsaleMapper)
     : base(logger,
            saleRepository,
            saleModelValidator,
            bolsaleMapper,
            dalsaleMapper)
 {
 }
Exemplo n.º 4
0
 public AbstractSaleService(
     ILogger logger,
     ISaleRepository saleRepository,
     IApiSaleRequestModelValidator saleModelValidator,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base()
 {
     this.SaleRepository     = saleRepository;
     this.SaleModelValidator = saleModelValidator;
     this.BolSaleMapper      = bolSaleMapper;
     this.DalSaleMapper      = dalSaleMapper;
     this.logger             = logger;
 }
Exemplo n.º 5
0
 public PetService(
     ILogger <IPetRepository> logger,
     IPetRepository petRepository,
     IApiPetRequestModelValidator petModelValidator,
     IBOLPetMapper bolpetMapper,
     IDALPetMapper dalpetMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base(logger,
            petRepository,
            petModelValidator,
            bolpetMapper,
            dalpetMapper,
            bolSaleMapper,
            dalSaleMapper)
 {
 }
Exemplo n.º 6
0
 public PaymentTypeService(
     ILogger <IPaymentTypeRepository> logger,
     IPaymentTypeRepository paymentTypeRepository,
     IApiPaymentTypeRequestModelValidator paymentTypeModelValidator,
     IBOLPaymentTypeMapper bolpaymentTypeMapper,
     IDALPaymentTypeMapper dalpaymentTypeMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base(logger,
            paymentTypeRepository,
            paymentTypeModelValidator,
            bolpaymentTypeMapper,
            dalpaymentTypeMapper,
            bolSaleMapper,
            dalSaleMapper)
 {
 }
Exemplo n.º 7
0
 public TransactionService(
     ILogger <ITransactionRepository> logger,
     ITransactionRepository transactionRepository,
     IApiTransactionRequestModelValidator transactionModelValidator,
     IBOLTransactionMapper boltransactionMapper,
     IDALTransactionMapper daltransactionMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base(logger,
            transactionRepository,
            transactionModelValidator,
            boltransactionMapper,
            daltransactionMapper,
            bolSaleMapper,
            dalSaleMapper)
 {
 }
Exemplo n.º 8
0
 public AbstractPetService(
     ILogger logger,
     IPetRepository petRepository,
     IApiPetRequestModelValidator petModelValidator,
     IBOLPetMapper bolPetMapper,
     IDALPetMapper dalPetMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base()
 {
     this.petRepository     = petRepository;
     this.petModelValidator = petModelValidator;
     this.bolPetMapper      = bolPetMapper;
     this.dalPetMapper      = dalPetMapper;
     this.bolSaleMapper     = bolSaleMapper;
     this.dalSaleMapper     = dalSaleMapper;
     this.logger            = logger;
 }
Exemplo n.º 9
0
 public AbstractTransactionService(
     ILogger logger,
     ITransactionRepository transactionRepository,
     IApiTransactionRequestModelValidator transactionModelValidator,
     IBOLTransactionMapper bolTransactionMapper,
     IDALTransactionMapper dalTransactionMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base()
 {
     this.transactionRepository     = transactionRepository;
     this.transactionModelValidator = transactionModelValidator;
     this.bolTransactionMapper      = bolTransactionMapper;
     this.dalTransactionMapper      = dalTransactionMapper;
     this.bolSaleMapper             = bolSaleMapper;
     this.dalSaleMapper             = dalSaleMapper;
     this.logger = logger;
 }
 public AbstractPaymentTypeService(
     ILogger logger,
     IPaymentTypeRepository paymentTypeRepository,
     IApiPaymentTypeRequestModelValidator paymentTypeModelValidator,
     IBOLPaymentTypeMapper bolPaymentTypeMapper,
     IDALPaymentTypeMapper dalPaymentTypeMapper,
     IBOLSaleMapper bolSaleMapper,
     IDALSaleMapper dalSaleMapper)
     : base()
 {
     this.paymentTypeRepository     = paymentTypeRepository;
     this.paymentTypeModelValidator = paymentTypeModelValidator;
     this.bolPaymentTypeMapper      = bolPaymentTypeMapper;
     this.dalPaymentTypeMapper      = dalPaymentTypeMapper;
     this.bolSaleMapper             = bolSaleMapper;
     this.dalSaleMapper             = dalSaleMapper;
     this.logger = logger;
 }