예제 #1
0
 public TablesService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
 public ManagerUserService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
예제 #3
0
 public WaiterBillsService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
 public ManagerProductsService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
예제 #5
0
 public CookOrdersService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
 public CookRecipesService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
예제 #7
0
 public CookIngredientsService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
 public CookProductsService(RestaurantSystemDbContext db)
 {
     this.db = db;
 }
예제 #9
0
 public WaiterProductsService(RestaurantSystemDbContext db, UserManager <User> waiters)
 {
     this.db = db;
 }