Ejemplo n.º 1
0
 public UsersController(degraafContext context, IUserService userService)
 {
     _context     = context;
     _userService = (UserService)userService;
 }
Ejemplo n.º 2
0
 public TablesController(degraafContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public ProductsController(degraafContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public OrdersController(degraafContext context)
 {
     _context = context;
 }
Ejemplo n.º 5
0
 public ReceiptsController(degraafContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public UserService(IOptions <AppSettings> appSettings, degraafContext context)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
Ejemplo n.º 7
0
 public ReservationsController(degraafContext context)
 {
     _context = context;
 }