public ProductRepository(IProductDbContext dbc, IProductMap map, ILogger <ProductData> log) : base(log, map)
 {
     entityContext = dbc;
 }
Exemple #2
0
 public ProductService(IProductMap productMap)
 {
     this.productMap = productMap;
 }
Exemple #3
0
 public ProductRepository(IMainDBContext dbc, IProductMap map_factory) : base(map_factory)
 {
     entity_context = dbc;
 }