public DictionaryTypesHelper(
     NewNiisDictionaryService newNiisDictionaryService,
     OldNiisContext oldContext,
     NiisWebContextMigration newContext)
 {
     _newContext = newContext;
     _oldContext = oldContext;
 }
Exemple #2
0
 public InsertAllDictionariesHandler(
     NiisWebContextMigration context,
     OldNiisDictionaryService oldNiisDictionaryService,
     NewNiisDictionaryService newNiisDictionaryService) : base(context)
 {
     _oldNiisDictionaryService = oldNiisDictionaryService;
     _newNiisDictionaryService = newNiisDictionaryService;
 }
 public InsertDicCustomersHandler(
     NiisWebContextMigration context,
     OldNiisDictionaryService oldNiisDictionaryService,
     NewNiisDictionaryService newNiisDictionaryService,
     AppConfiguration appConfiguration) : base(context)
 {
     _oldNiisDictionaryService = oldNiisDictionaryService;
     _newNiisDictionaryService = newNiisDictionaryService;
     _appConfiguration         = appConfiguration;
 }