public UserNotificationController(FoodserviceContext context)
 {
     manager = new UserNotificationManager(context);
 }
Beispiel #2
0
 public SellerItemController(FoodserviceContext context)
 {
     manager = new SellerItemManager(context);
 }
 public FlatController(FoodserviceContext context)
 {
     manager = new FlatManager(context);
 }
Beispiel #4
0
 public UserController(FoodserviceContext context)
 {
     manager = new UserManager(context);
 }
Beispiel #5
0
 public ApartmentController(FoodserviceContext context)
 {
     manager = new ApartmentManager(context);
 }
Beispiel #6
0
 public OrderManager(FoodserviceContext context)
 {
     this._context = context;
 }
Beispiel #7
0
 public SellerItemManager(FoodserviceContext context)
 {
     this._context = context;
 }
Beispiel #8
0
 public FlatManager(FoodserviceContext context)
 {
     this._context = context;
 }
Beispiel #9
0
 public ApartmentManager(FoodserviceContext context)
 {
     this._context = context;
 }
 public UserNotificationManager(FoodserviceContext context)
 {
     this.context = context;
 }