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