public OrderTrackerController(ICustomerInformationService customerInformationService, IOrderService orderService, IMapper mapper, ILogger <OrderTrackerController> logger)
 {
     _customerInformationService = customerInformationService;
     _orderService = orderService;
     _mapper       = mapper;
     _logger       = logger;
 }
Ejemplo n.º 2
0
 public CustomerInformationController(ICustomerInformationService customerInformationService)
 {
     _customerInformationService = customerInformationService;
 }
Ejemplo n.º 3
0
 public CustomerInformationController(ICustomerInformationService CustomerInformationService)
 {
     _CustomerInformationService = CustomerInformationService;
 }