Beispiel #1
0
 public MappingCommand(
     IOptionsCommand options,
     IMappingService mappingService,
     ICsprojService csprojService)
 {
     _options        = options;
     _mappingService = mappingService;
     _csprojService  = csprojService;
 }
 public RepositoryCommand(
     IRepositoryService repositoryService,
     IOptionsCommand options,
     ICsprojService csprojService)
 {
     _repositoryService = repositoryService;
     _options           = options;
     _csprojService     = csprojService;
 }
Beispiel #3
0
 public EntityService(
     ILoggerFactory logger,
     IFileService fileService,
     ICsprojService csproj,
     IOptionsCommand options)
 {
     _logger      = logger.CreateLogger(GetType());
     _fileService = fileService;
     _csproj      = csproj;
     _options     = options;
 }
 public UnitWorkService(
     ILoggerFactory logger,
     IOptionsCommand options,
     ICsprojService csproj,
     IFileService fileService)
 {
     _logger      = logger.CreateLogger(GetType());
     _options     = options;
     _csproj      = csproj;
     _fileService = fileService;
 }
 public ConfigureInjectionService(
     ILoggerFactory logger,
     IOptionsCommand options,
     ICsprojService csproj,
     IFileService fileService,
     IEntityService entityService)
 {
     _logger        = logger.CreateLogger(GetType());
     _options       = options;
     _csproj        = csproj;
     _fileService   = fileService;
     _entityService = entityService;
 }
Beispiel #6
0
 public InitializeCommand(
     IOptionsCommand options,
     IContextService contextService,
     IRepositoryService repositoryService,
     IMappingService mappingService,
     IUnitWorkService unitWorkService,
     IConfigureInjectionService configureInjectionService,
     ICsprojService csprojService,
     IEntityService entityService)
 {
     _options                   = options;
     _contextService            = contextService;
     _repositoryService         = repositoryService;
     _mappingService            = mappingService;
     _unitWorkService           = unitWorkService;
     _configureInjectionService = configureInjectionService;
     _csprojService             = csprojService;
     _entityService             = entityService;
 }