Esempio n. 1
0
 public UnitOfWork(NaggleEntities context)
 {
     this._context = context;
 }
 public BaseRepository(NaggleEntities context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }