public IActionResult DeleteAccount(Guid accountGuid) { Guid userGuid = Guid.Parse(Read("userGuid")); var userDto = _userApiService.GetUserDto(userGuid); Set("accountsPosition", 0.ToString()); try { _userApiService.DeleteAccount(userDto.UserGuid, accountGuid); return(LoadOverview(string.Empty)); } catch (Exception e) { return(LoadOverview(MessageHandler(e, "Unknown Error: DeleteAccount"))); } }