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