Exemplo n.º 1
0
 public UserInformationController(IUserInformationService userInformationService, IVerificationCodeHelper verificationCodeHelper)
 {
     this.userInformationService = userInformationService;
     this.verificationCodeHelper = verificationCodeHelper;
 }
Exemplo n.º 2
0
 public UserInformationServiceTest(ProgramInitFixture programInitFixture) : base(programInitFixture)
 {
     this.userInformationService = Provider.GetService(typeof(IUserInformationService)) as IUserInformationService;
     this.verificationCodeHelper = this.Provider.GetService(typeof(IVerificationCodeHelper)) as IVerificationCodeHelper;
 }
Exemplo n.º 3
0
 public VerificationCodeController(IVerificationCodeHelper codeHelper, ICacheManager cacheManager, ISettingManager settingManager)
 {
     _codeHelper     = codeHelper;
     _cacheManager   = cacheManager;
     _settingManager = settingManager;
 }
Exemplo n.º 4
0
 public UserInformationService(MyDbContext myDbContext, IVerificationCodeHelper verificationCodeHelper)
 {
     this.myDbContext            = myDbContext;
     this.verificationCodeHelper = verificationCodeHelper;
 }
Exemplo n.º 5
0
 public VerificationCodeHelperTest(ProgramInitFixture programInitFixture) : base(programInitFixture)
 {
     this.verificationCodeHelper = this.Provider.GetService(typeof(IVerificationCodeHelper)) as IVerificationCodeHelper;
 }