Beispiel #1
0
 public ProductRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #2
0
 public CompanyRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #3
0
 public UserRoleRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #4
0
 public ApplicationLicencesRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #5
0
 public LogDataRepository(IComProvisAvDbContext context) : base(context)
 {
 }
 public OrderDemandRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #7
0
 public ApplicationSubscriptionRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #8
0
 public RolesRepository(IComProvisAvDbContext context) : base(context)
 {
 }
Beispiel #9
0
 public Repository(IComProvisAvDbContext context)
 {
     _context   = context;
     _entitySet = _context.ModelSet <TEntity>();
 }
Beispiel #10
0
 public UnitOfWork(IComProvisAvDbContext dbContext)
 {
     _dbContext = dbContext;
 }