/// <summary> /// Register a new user with the account server. /// </summary> /// <param name="registration">The new user's info.</param> /// <returns>True if no errors.</returns> public Task <bool> RegisterAsync(UserRegistration registration) { throw new NotImplementedException(); }
/// <summary> /// Register a new user with the account server. /// </summary> /// <param name="registration">The new user's info.</param> /// <returns>True if no errors.</returns> public static async Task <bool> RegisterUserAsync(UserRegistration registration) { return(await UserService.RegisterAsync(registration)); }