コード例 #1
0
 public UserRepository(FastTradeContext context)
 {
     this.db = context;
 }
コード例 #2
0
ファイル: EFUnitOfWork.cs プロジェクト: PerezAndrei/FastTrade
 public EFUnitOfWork(string connectionString)
 {
     db = new FastTradeContext(connectionString);
 }
コード例 #3
0
 public CategoryRepository(FastTradeContext context)
 {
     this.db = context;
 }
コード例 #4
0
 public LocationRepository(FastTradeContext context)
 {
     this.db = context;
 }
コード例 #5
0
 public RoleRepository(FastTradeContext context)
 {
     this.db = context;
 }
コード例 #6
0
 public KindRepository(FastTradeContext context)
 {
     this.db = context;
 }