Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 public MarkerController(IMarkerServices markerService, ITemplateEmailSender templateEmailSender, IConfiguration configuration)
 {
     this.markerServices      = markerService;
     this.templateEmailSender = templateEmailSender;
     this.configuration       = configuration;
 }