コード例 #1
0
 public AccountController(IUserServices userServices,
                          ILogger <AccountController> logger,
                          ITemplateEmailSender templateEmailSender,
                          IConfiguration configuration)
 {
     this.userServices        = userServices;
     this.logger              = logger;
     this.templateEmailSender = templateEmailSender;
     this.configuration       = configuration;
 }
コード例 #2
0
 public MarkerController(IMarkerServices markerService, ITemplateEmailSender templateEmailSender, IConfiguration configuration)
 {
     this.markerServices      = markerService;
     this.templateEmailSender = templateEmailSender;
     this.configuration       = configuration;
 }