コード例 #1
0
ファイル: HomeController.cs プロジェクト: hnky/CfpExchange
 public HomeController(CfpContext cfpContext, IEmailSender emailSender,
                       IConfiguration configuration)
 {
     _cfpContext    = cfpContext;
     _emailSender   = emailSender;
     _configuration = configuration;
 }
コード例 #2
0
 public HomeController(CfpContext cfpContext, IEmailService emailSender,
                       IConfiguration configuration, ILogger <HomeController> logger)
 {
     _cfpContext    = cfpContext;
     _emailSender   = emailSender;
     _configuration = configuration;
     _logger        = logger;
 }
コード例 #3
0
 public CfpController(CfpContext cfpContext, IConfiguration configuration,
                      IEmailSender emailSender, IHostingEnvironment env)
 {
     _cfpContext         = cfpContext;
     _configuration      = configuration;
     _emailSender        = emailSender;
     _hostingEnvironment = env;
 }
コード例 #4
0
 public CfpController(CfpContext cfpContext, IConfiguration configuration,
                      IEmailSender emailSender, IHostingEnvironment env,
                      IDownloadEventImageMessageSender downloadEventImageMessageSender)
 {
     _cfpContext         = cfpContext;
     _configuration      = configuration;
     _emailSender        = emailSender;
     _hostingEnvironment = env;
     _downloadEventImageMessageSender = downloadEventImageMessageSender;
 }
コード例 #5
0
 public CfpService(CfpContext cfpContext)
 {
     _cfpContext = cfpContext;
 }
コード例 #6
0
 public RssMiddleware(RequestDelegate next, string rootUrl, CfpContext cfpContext)
 {
     _next       = next;
     _rootUrl    = rootUrl;
     _cfpContext = cfpContext;
 }
コード例 #7
0
ファイル: CfpController.cs プロジェクト: almirvuk/CfpExchange
 public CfpController(CfpContext cfpContext)
 {
     _cfpContext = cfpContext;
 }