コード例 #1
0
 public QueryReporitory(BaseDbContext context)
 {
     this.uw = context;
 }
コード例 #2
0
 public UnitOfWork()
 {
     context = new BaseDbContext();
 }
コード例 #3
0
ファイル: Repository.cs プロジェクト: a252354636/UnitOfWork
 public Repository(BaseDbContext context)
 {
     this.uw = context;
 }