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