public OrderTrackerController(ICustomerInformationService customerInformationService, IOrderService orderService, IMapper mapper, ILogger <OrderTrackerController> logger) { _customerInformationService = customerInformationService; _orderService = orderService; _mapper = mapper; _logger = logger; }
public CustomerInformationController(ICustomerInformationService customerInformationService) { _customerInformationService = customerInformationService; }
public CustomerInformationController(ICustomerInformationService CustomerInformationService) { _CustomerInformationService = CustomerInformationService; }