コード例 #1
0
ファイル: OrderRepository.cs プロジェクト: volinc/UnitOfWork
 public OrderRepository(DispatcherDbContext dbContext, Mapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
コード例 #2
0
 public UnitOfWork(DispatcherDbContext dbContext, Mapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
コード例 #3
0
 public SuggestionRepository(DispatcherDbContext dbContext, Mapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }