예제 #1
0
 public DrinksController(SaladApiDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public UsersController(SaladApiDbContext context, IOrderRepository orderRepository)
 {
     _context         = context;
     _orderRepository = orderRepository;
 }
예제 #3
0
 public SaladsController(SaladApiDbContext context)
 {
     _context = context;
 }