public ExcelDocumentProcessor() { _normalizeData = new NormalizeData(); _dbContext = new SketchpackDbContext(); _categoryRepository = new CategoryRepository(_dbContext); _categoryTranslationRepository = new CategoryTranslationRepository(_dbContext); _imageDescriptionRepository = new ImageDescriptionRepository(_dbContext); _imageDictionaryRepository = new ImageDictionaryRepository(_dbContext); _langDictionaryRepository = new LangDictionaryRepository(_dbContext); }
public LangDictionaryRepository(SketchpackDbContext context) : base(context) { }
public ImageDescriptionRepository(SketchpackDbContext context) : base(context) { }
public CategoryRepository (SketchpackDbContext context) : base(context) { }
public CategoryTranslationRepository(SketchpackDbContext context) : base(context) { }
public GenericRepository(SketchpackDbContext context) : base(context) { }
public GenericKeyRepository(SketchpackDbContext context) { Context = context; }