public override async void Start() { try { using (_userDialogs.Loading("Loading")) { var result = await _api.GetAllByCatId(Convert.ToInt32(Id)); Posts = result.Data; } } catch (Exception) { await _userDialogs.AlertAsync(Mvx.IoCProvider.Resolve <ILocalizeService>().Translate("Error"), Mvx.IoCProvider.Resolve <ILocalizeService>().Translate("Error"), Mvx.IoCProvider.Resolve <ILocalizeService>().Translate("Ok")); throw; } }