public SqliteProductDataManager(SqliteProductCatalogDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public SqliteCategoryDataManager(SqliteProductCatalogDbContext context)
 {
     this.context = context;
 }
Пример #3
0
 public SqliteManufacturerDataManager(SqliteProductCatalogDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }