public SqlEmployeeRepository(ServingYouContext context)
 {
     this.context = context;
 }
 public SqlRestaurantRepository(ServingYouContext context)
 {
     this.context = context;
 }
 public SqlBookingRepository(ServingYouContext context)
 {
     this.context = context;
 }
 public SqlOrderRepository(ServingYouContext context)
 {
     this.context = context;
 }
Пример #5
0
 public SqlMenuRepository(ServingYouContext context)
 {
     this.context = context;
 }