コード例 #1
0
 public TasksCommands(
     IAppDbContextFactory dbContextFactory,
     IModelMappingService lifeTaskMappingService)
 {
     _dbContextFactory       = dbContextFactory;
     _lifeTaskMappingService = lifeTaskMappingService;
 }
 public LegacyDataLoadService(
     ILogger <LegacyDataLoadService> logger,
     IModelMappingService modelMappingService,
     IModelValidationService modelValidationService,
     IDocumentService <AppRegistrationModel> documentService,
     ILegacyPathService legacyPathService,
     ILegacyRegionService legacyRegionService)
 {
     this.logger = logger;
     this.modelMappingService    = modelMappingService;
     this.modelValidationService = modelValidationService;
     this.documentService        = documentService;
     this.legacyPathService      = legacyPathService;
     this.legacyRegionService    = legacyRegionService;
 }