コード例 #1
0
 public TemplateRepo(AppDbContext dbContext, IUniversalMapper mapper) : base(dbContext, mapper)
 {
 }
コード例 #2
0
ファイル: OrderRepo.cs プロジェクト: TSlex/vnk_app
 public OrderRepo(AppDbContext dbContext, IUniversalMapper mapper) : base(dbContext, mapper)
 {
 }
コード例 #3
0
 public AttributeTypeUnitRepo(AppDbContext dbContext, IUniversalMapper mapper) : base(dbContext, mapper)
 {
 }
コード例 #4
0
ファイル: BaseRepo.cs プロジェクト: TSlex/vnk_app
 protected BaseRepo(TDbContext dbContext, IUniversalMapper mapper)
 {
     DbContext = dbContext;
     DbSet     = dbContext.Set <TEntity>();
     Mapper    = mapper;
 }
コード例 #5
0
 protected BaseUnitOfWork(TDbContext dbContext, IUniversalMapper mapper)
 {
     DbContext = dbContext;
     Mapper    = mapper;
 }
コード例 #6
0
ファイル: AppRoleRepo.cs プロジェクト: TSlex/vnk_app
 public AppRoleRepo(AppDbContext dbContext, IUniversalMapper mapper)
 {
     DbContext = dbContext;
     DbSet     = dbContext.Set <AppRole>();
     Mapper    = mapper;
 }