예제 #1
0
 public DealerCartController(ICarRepository carRepository, IDealerCart dealerCart)
 {
     _carRepository = carRepository;
     _dealerCart    = dealerCart;
 }
예제 #2
0
 public OrderController(IDealerCart dealerCart, IOrderRepository orderRepository)
 {
     _dealerCart      = dealerCart;
     _orderRepository = orderRepository;
 }
예제 #3
0
 public DealerCartSummary(IDealerCart dealerCart)
 {
     _dealerCart = dealerCart;
 }
예제 #4
0
 public OrderRepository(TrustedRideDbContext context, IDealerCart dealerCart)
 {
     _context    = context;
     _dealerCart = dealerCart;
 }