public ItemRepository(RestarurantContext context) : base(context)
 {
     this.context = context;
 }
Beispiel #2
0
 public LocationRepository(RestarurantContext context) : base(context)
 {
     this.context = context;
 }
Beispiel #3
0
        public GenericRepository(RestarurantContext context)                                 // ctor  which  Initi
        {
            _context = context;

            _dbSet = context.Set <T>();
        }
 public ManagerRepository(RestarurantContext context) : base(context)
 {
     this.context = context;
 }