Example #1
0
 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);
 }
Example #2
0
 public LangDictionaryRepository(SketchpackDbContext context) : base(context)
 {
 }
Example #3
0
 public ImageDescriptionRepository(SketchpackDbContext context) : base(context)
 {
 }
 public CategoryRepository
     (SketchpackDbContext context) : base(context)
 {
 }
 public CategoryTranslationRepository(SketchpackDbContext context) : base(context)
 {
 }
Example #6
0
 public GenericRepository(SketchpackDbContext context) : base(context)
 {
 }
Example #7
0
 public GenericKeyRepository(SketchpackDbContext context)
 {
     Context = context;
 }