コード例 #1
0
ファイル: GenericRepository.cs プロジェクト: pabluc/Clase-5
 public GenericRepository(TresanaContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <TEntity>();
 }
コード例 #2
0
ファイル: UnitOfWork.cs プロジェクト: pabluc/Clase-5
 public UnitOfWork(TresanaContext tresanaContext)
 {
     context = tresanaContext;
 }