public async Task <bool> UpdateUser(int id, UpdateUserRequest updateUserRequest) { try { var response = await JongSnamServices.UpdateUserWithHttpMessagesAsync(id, updateUserRequest, CustomHeaders); return(true); } catch (Exception ex) { return(false); throw ex; } }