public CustomUserAccountService(CustomConfig config, CustomUserAccountRepository repo)
     : base(config, repo)
 {
 }
 static CustomConfig()
 {
     Config = new CustomConfig();
     Config.PasswordHashingIterationCount = 10000;
     Config.RequireAccountVerification    = false;
 }