Esempio n. 1
0
 public SMSTemplateAppService(ISMSTemplateManager smsTemplateManager,
                              ISMSConfiguration smsConfiguration,
                              ICacheManager cacheManager)
 {
     this._smsTemplateManager = smsTemplateManager;
     this._smsConfiguration   = smsConfiguration;
     this._cacheManager       = cacheManager;
 }
Esempio n. 2
0
 public SMSAppService(UserStore userStore,
                      ISmsSender smsSender,
                      ICaptchaValidator captchaValidator,
                      IVerificationCodeManager verificationCodeManager,
                      ISMSTemplateManager smsTemplateManager)
 {
     this._userStore               = userStore;
     this._smsSender               = smsSender;
     this._captchaValidator        = captchaValidator;
     this._verificationCodeManager = verificationCodeManager;
     this._smsTemplateManager      = smsTemplateManager;
 }