Example #1
0
 public WaiterRepository(CaffeContext context)
 {
     this.context = context;
 }
 public LocationService(CaffeContext context) : base(context)
 {
 }
Example #3
0
 public UnitController(CaffeContext caffeContext)
 {
     context = caffeContext;
     unit    = new UnitOfWork(context);
 }
Example #4
0
 public ServiceBase(CaffeContext context)
 {
     _context = context;
 }
Example #5
0
 public DrinkRepository(CaffeContext context)
 {
     this.context = context;
 }
 public CustomerService(CaffeContext context) : base(context)
 {
 }
Example #7
0
 public AuthRepository(CaffeContext context)
 {
     this.context = context;
 }
Example #8
0
 public UnitOfWork(CaffeContext context)
 {
     this.context = context;
 }
Example #9
0
 public GuestsRepository(CaffeContext contextDb)
 {
     context = contextDb;
 }
Example #10
0
 public BillRepository(CaffeContext context)
 {
     this.context = context;
 }
Example #11
0
 public TableRepository(CaffeContext context)
 {
     this.context = context;
 }