예제 #1
0
 public MessageService(IDbContext dataAccessor, IFapConfigService configService, ILogger <MessageService> logger, IFapFileService fileService)
 {
     _dataAccessor  = dataAccessor;
     _configService = configService;
     _logger        = logger;
     _fileService   = fileService;
 }
예제 #2
0
 public RecruitService(IDbContext dbContext, IServiceProvider serviceProvider, IFapFileService fapFileService, ILoggerFactory loggerFactory, IFapApplicationContext applicationContext)
 {
     _dbContext          = dbContext;
     _logger             = loggerFactory.CreateLogger <RecruitService>();
     _fapFileService     = fapFileService;
     _applicationContext = applicationContext;
     _serviceProvider    = serviceProvider;
     _messageService     = serviceProvider.GetService <IMessageService>();
     _writeBackService   = serviceProvider.GetService <IWriteBackService>();
 }
예제 #3
0
 public SurveyApiController(IServiceProvider serviceProvider) : base(serviceProvider)
 {
     _fapFileService = serviceProvider.GetService <IFapFileService>();
     _logger         = _loggerFactory.CreateLogger <SurveyApiController>();
     _surveyService  = serviceProvider.GetService <ISurveyService>();
 }
예제 #4
0
 public ComponentController(IServiceProvider serviceProvider, IFapFileService fapFileService) : base(serviceProvider)
 {
     _fapFileService = fapFileService;
     _logger         = _loggerFactory.CreateLogger <ComponentController>();
 }
예제 #5
0
 public ToolsApiController(IServiceProvider serviceProvider, IFapFileService fileService, IDbMetadataContext dbMetadataContext, IExcelReportService reportService) : base(serviceProvider)
 {
     _fileService       = fileService;
     _dbMetadataContext = dbMetadataContext;
     _reportService     = reportService;
 }
 public ZhiLianParseEmailService(IDbContext dbContext, ILoggerFactory loggerFactory, IFapFileService fapFileService) : base(dbContext, loggerFactory, fapFileService)
 {
 }
예제 #7
0
 public ParseEmailService(IDbContext dbContext, ILoggerFactory loggerFactory, IFapFileService fapFileService)
 {
     _dbContext      = dbContext;
     _loggerFactory  = loggerFactory;
     _fapFileService = fapFileService;
 }
예제 #8
0
 public ImageService(IFapFileService fileService)
 {
     _fileService = fileService;
 }