public StatusCartsController(
     IStatusCartsService statusCartsService,
     ILogger <StatusCartsController> logger
     )
 {
     _statusCartsService = statusCartsService;
     _logger             = logger;
 }
Ejemplo n.º 2
0
 public OrderAdminController(
     IOrderAdminService orderAdminService,
     IOrderDetailsAdminService orderDetailsAdminService,
     IProductService productService,
     IUnitOfWork unitOfWork,
     IStatusCartsService statusCartsService,
     ILogger <OrderAdminController> logger
     )
 {
     _orderAdminService        = orderAdminService;
     _orderDetailsAdminService = orderDetailsAdminService;
     _productService           = productService;
     _logger             = logger;
     _statusCartsService = statusCartsService;
     _unitOfWork         = unitOfWork;
 }
Ejemplo n.º 3
0
 public OrderController(
     IUnitOfWork unitOfWork,
     IOrderService orderService,
     IOrderDetailsService orderDetailsService,
     IEmailSenderService emailSenderService,
     ILogger <OrderController> logger,
     IProductClientService productClientService,
     IStatusCartsService statusCartsService,
     IStatisticsService statisticsService,
     IHttpContextAccessor httpContextAccessor)
 {
     _unitOfWork          = unitOfWork;
     _orderService        = orderService;
     _orderDetailsService = orderDetailsService;
     _httpContextAccessor = httpContextAccessor;
     _emailSenderService  = emailSenderService;
     _statisticsService   = statisticsService;
     _logger = logger;
     _productClientService = productClientService;
     _statusCartsService   = statusCartsService;
 }