コード例 #1
0
ファイル: GenericRepository.cs プロジェクト: molefeq/pheko
 public GenericRepository(PhekoEntities context)
 {
     _Context = context;
     _DbSet   = context.Set <TEntity>();
 }
コード例 #2
0
ファイル: UnitOfWork.cs プロジェクト: molefeq/pheko-angularjs
 public UnitOfWork()
 {
     _Context  = new PhekoEntities();
     _Disposed = false;
 }