Пример #1
0
 public CrowdSourceController(
     ILoggerFactory loggerFactory,
     IDataLogic logic,
     ApplicationDbContext context,
     ITaskDispatcher taskDispatcher,
     ITextSanitizer textSanitizer,
     IDbConfig config,
     UserManager <ApplicationUser> userMan,
     IHttpContextAccessor httpContext
     )
 {
     _context        = context;
     _logger         = loggerFactory.CreateLogger <CrowdSourceController>();
     _logic          = logic;
     _taskDispatcher = taskDispatcher;
     _textSanitizer  = textSanitizer;
     _config         = config;
     _httpContext    = httpContext;
     _userMan        = userMan;
 }
 public DevopsWeeklyParser(IContentGetter <string> cg, ITextSanitizer ts)
 {
     htmlContentGetter = cg;
     textSanitizer     = ts;
 }
 public DenseDiscoveryParser(IContentGetter <string> cg, IContentNormalizer cn, ITextSanitizer ts)
 {
     htmlContentGetter = cg;
     contentNormalizer = cn;
     textSanitizer     = ts;
 }
Пример #4
0
 public ChangelogParser(IContentGetter <string> cg, IContentNormalizer cn, ITextSanitizer ts)
 {
     htmlContentGetter = cg;
     contentNormalizer = cn;
     textSanitizer     = ts;
 }
Пример #5
0
 public TheProtocolParser(IContentGetter <string> cg, IContentNormalizer cn, ITextSanitizer ts)
 {
     htlmContentGetter = cg;
     contentNormalizer = cn;
     textSanitizer     = ts;
 }