private async Task GuardarDatos()
        {
            msgError = "";
            try
            {
                if (ValidarCampos())
                {
                    ApiService          dataServices        = new ApiService();
                    SolicitudEntrenador solicitudEntrenador = ObtenerDatos();
                    try
                    {
                        var result = await dataServices.AbcEntrenador(solicitudEntrenador);

                        if (result != null)
                        {
                            /*  if (App.CroppedImage != null)
                             * {
                             *    if (Device.RuntimePlatform.Equals("Android") || Device.RuntimePlatform.Equals("iOS"))
                             *    {
                             *        await DependencyService.Get<IFtpWebRequest>().Upload(DatosGlobales.id_cliente + ".png", DatosGlobales.servidorFTP, filePath, DatosGlobales.usuarioFTP, DatosGlobales.passwordFTP, "/ScriptAppUnoMasCliente/Images/Perfil");
                             *    }
                             * }
                             * ActualizarDatos(solicitudCliente);*/
                        }
                        else
                        {
                            msgError = "Lo sentimos, hubo un error al guardar sus datos.";
                        }
                    }
                    catch (Exception ex)
                    {
                        msgError = ex.Message.ToString();
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }