Example #1
0
 public OldNiisDocumentRelationService(
     OldNiisContext context,
     DictionaryTypesHelper dictionaryTypesHelper)
 {
     _context = context;
     _dictionaryTypesHelper = dictionaryTypesHelper;
 }
 public OldNiisSecurityUserService(
     OldNiisContext context,
     UserManager <ApplicationUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Example #3
0
 public DictionaryTypesHelper(
     NewNiisDictionaryService newNiisDictionaryService,
     OldNiisContext oldContext,
     NiisWebContextMigration newContext)
 {
     _newContext = newContext;
     _oldContext = oldContext;
 }
 public OldNiisProtectionDocService(
     OldNiisContext context,
     DictionaryTypesHelper dictionaryTypesHelper)
 {
     _context = context;
     _dictionaryTypesService = dictionaryTypesHelper;
     InitializeOldRequestInfos();
 }
Example #5
0
 public OldNiisRequestService(
     OldNiisContext context,
     DictionaryTypesHelper dictionaryTypesService,
     OldNiisDictionaryService oldNiisDictionaryService)
 {
     _context = context;
     _dictionaryTypesService   = dictionaryTypesService;
     _oldNiisDictionaryService = oldNiisDictionaryService;
 }
Example #6
0
 public OldNiisPaymentService(
     OldNiisContext context,
     AppConfiguration appConfiguration,
     DictionaryTypesHelper dictionaryTypesService)
 {
     _context                = context;
     _appConfiguration       = appConfiguration;
     _dictionaryTypesService = dictionaryTypesService;
 }
Example #7
0
 public OldNiisMainEntityRelationService(
     OldNiisContext context,
     NiisWebContextMigration newContext,
     DictionaryTypesHelper dictionaryTypesHelper)
 {
     _context               = context;
     _newContext            = newContext;
     _dictionaryTypesHelper = dictionaryTypesHelper;
 }
Example #8
0
 public PrepareMigrationHandler(
     NiisWebContextMigration niisWebContext,
     OldNiisContext oldNiisContext) : base(niisWebContext)
 {
     _oldNiisContext = oldNiisContext;
 }
Example #9
0
 public OldNiisProtectionDocRelationService(OldNiisContext context, DictionaryTypesHelper dictionaryTypesHelper)
 {
     _context = context;
     _dictionaryTypesHelper = dictionaryTypesHelper;
 }