コード例 #1
0
ファイル: Index.cshtml.cs プロジェクト: huww98/EmailCollector
 public ListModel(EmailCollectorContext context)
 {
     _context = context;
 }
コード例 #2
0
 public EmailFetcher(IOptions <EmailFetcherOptions> options, EmailCollectorContext context, ILogger <EmailFetcher> logger)
 {
     this.options = options.Value;
     this.context = context;
     this.logger  = logger;
 }