//private readonly ILogger logger;

        public PaymentController(
            IHostingEnvironment environment,
            IPaymentApplicationService paymentApplicationService)
        //ILogger logger)
        {
            this.environment = environment;
            this.paymentApplicationService = paymentApplicationService;
            //this.logger = logger;
        }
Exemplo n.º 2
0
 public SaleController(IClientApplicationService clientService, IRouteApplicationService routeService,
                       IDeliveryApplicationService deliveryService, IProductApplicationService productService,
                       ISaleApplicationService saleService, IPaymentApplicationService paymentService,
                       IBoxApplicationService boxService)
 {
     _clientService   = clientService;
     _routeService    = routeService;
     _deliveryService = deliveryService;
     _productService  = productService;
     _saleService     = saleService;
     _paymentService  = paymentService;
     _boxService      = boxService;
 }
Exemplo n.º 3
0
 public PaymentsController(
     IDomainNotificationHandler notifications,
     IPaymentApplicationService paymentApplicationService) : base(notifications)
 {
     _paymentApplicationService = paymentApplicationService;
 }
Exemplo n.º 4
0
 public PaymentController(IPaymentHistoryApplicationService paymentHistoryApplicationService, IPaymentApplicationService paymentApplicationService)
 {
     _paymentApplicationService        = paymentApplicationService;
     _paymentHistoryApplicationService = paymentHistoryApplicationService;
 }