public UnitOfWork(CBTDbContext context)
 {
     this._context = context;
 }
 public GenericRepository(CBTDbContext context)
 {
     this._context = context;
     this.DbSet    = _context.Set <TEntity>();
 }
 public StoredProcedure(CBTDbContext context)
 {
     this._context = context;
 }