public bool DeleteUser(int userId) { return(userClient.DeleteUser(userId)); }
/// <summary> /// Delete the user by the ID /// </summary> /// <param name="UserID">Unique identifier for the user</param> /// <returns>Success/Failure</returns> public async Task <string> DeleteUser(long UserID) { return(await _userClient.DeleteUser(UserID)); }