Example #1
0
 public ProductImageRepository(ElectricalStoreContext context) : base(context)
 {
 }
 public FeatureRepository(ElectricalStoreContext context) : base(context)
 {
 }
Example #3
0
 public RepositoryBase(ElectricalStoreContext repositoryContext)
 {
     this.RepositoryContext = repositoryContext;
 }
Example #4
0
 public CategoryRepository(ElectricalStoreContext context) : base(context)
 {
 }
Example #5
0
 public CategoryProductJuncRepository(ElectricalStoreContext context) : base(context)
 {
 }
Example #6
0
 public ProductFeatureJuncRepository(ElectricalStoreContext context) : base(context)
 {
 }
 public RepositoryWrapper(ElectricalStoreContext repositoryContext)
 {
     _repoContext = repositoryContext;
 }