public ItemCategoryProvider(IGalleryDbContext context) : base(context)
 {
 }
Example #2
0
 public ProjectProvider(IGalleryDbContext context) : base(context)
 {
 }
 public CustomerOccupationProvider(IGalleryDbContext context) : base(context)
 {
 }
Example #4
0
 public EmployeeVisitResponseProvider(IGalleryDbContext context) : base(context)
 {
 }
 public FactProductProvider(IGalleryDbContext context) : base(context)
 {
 }
 public FactCustomerProvider(IGalleryDbContext context) : base(context)
 {
 }
Example #7
0
 public TaxonomyProvider(IGalleryDbContext context) : base(context)
 {
 }
Example #8
0
 public CountryProvider(IGalleryDbContext context) : base(context)
 {
 }
Example #9
0
 public FactProvider(IGalleryDbContext db) : base(db)
 {
 }
Example #10
0
 public BaseProvider(IGalleryDbContext db)
 {
     this.db = (GalleryDbContext)db;
 }