public static ExecutionResult <TValue> ToFailedExecutionResult <TValue>(this IdentityResult identityResult)
        {
            var executionResult = identityResult.ToExecutionResult();

            return(new ExecutionResult <TValue>(executionResult.ResultType, executionResult.Message));
        }