Example #1
0
 public ListModel(EmailCollectorContext context)
 {
     _context = context;
 }
Example #2
0
 public EmailFetcher(IOptions <EmailFetcherOptions> options, EmailCollectorContext context, ILogger <EmailFetcher> logger)
 {
     this.options = options.Value;
     this.context = context;
     this.logger  = logger;
 }