Exemplo n.º 1
0
 public UnitOfWork(RKLDatabaseContext db)
 {
     this.db = db;
 }
Exemplo n.º 2
0
        public GenericRepository(RKLDatabaseContext context)
        {
            this.context = context;

            this.dbset = this.context.Set <TEntity>();
        }