Ejemplo n.º 1
0
 public TemplateRepo(AppDbContext dbContext, IUniversalMapper mapper) : base(dbContext, mapper)
 {
 }
Ejemplo n.º 2
0
 public OrderRepo(AppDbContext dbContext, IUniversalMapper mapper) : base(dbContext, mapper)
 {
 }
Ejemplo n.º 3
0
 public AttributeTypeUnitRepo(AppDbContext dbContext, IUniversalMapper mapper) : base(dbContext, mapper)
 {
 }
Ejemplo n.º 4
0
 protected BaseRepo(TDbContext dbContext, IUniversalMapper mapper)
 {
     DbContext = dbContext;
     DbSet     = dbContext.Set <TEntity>();
     Mapper    = mapper;
 }
Ejemplo n.º 5
0
 protected BaseUnitOfWork(TDbContext dbContext, IUniversalMapper mapper)
 {
     DbContext = dbContext;
     Mapper    = mapper;
 }
Ejemplo n.º 6
0
 public AppRoleRepo(AppDbContext dbContext, IUniversalMapper mapper)
 {
     DbContext = dbContext;
     DbSet     = dbContext.Set <AppRole>();
     Mapper    = mapper;
 }