public static (bool, string) VerifyPasswordCustom(this PasswordCheckerService checkerService, string password)
        {
            if (string.Empty == password)
            {
                return(false, "Empty password");
            }

            checkerService.SaveToRepository(password);

            return(true, "Password is Ok. User was created");
        }