Exemplo n.º 1
0
 public static void ShowAlertMessage <T>(T response, Page page) where T : BaseResponse
 {
     if (!string.IsNullOrWhiteSpace(response.ApiMessage))
     {
         var aConfi = new AlertConfig();
         aConfi.SetMessage(response.ApiMessage);
         aConfi.SetTitle("Помилка");
         aConfi.SetOkText("Ок");
         UserDialogs.Instance.Alert(aConfi);
     }
     if (!string.IsNullOrWhiteSpace(response.BaseMessage))
     {
         var aConfi = new AlertConfig();
         aConfi.SetMessage(response.BaseMessage);
         aConfi.SetTitle("Помилка");
         aConfi.SetOkText("Ок");
         UserDialogs.Instance.Alert(aConfi);
     }
 }