public bool Insert()
        {
            ArbitroInsertar.Fecha_Nacimiento = FechaNacimiento.Year + "-" + FechaNacimiento.Month + "-" + FechaNacimiento.Day;
            ArbitroInsertar.Dni = ArbitroInsertar.Dni.ToUpper();
            if (!ArbitroInsertar.Foto.Equals("/Assets/defecto.jpg"))
            {
                string[] rutaimagen = ArbitroInsertar.Foto.Split('/');
                string   urlImagen  = BlobStorage.GuardarImagen(ArbitroInsertar.Foto, rutaimagen[rutaimagen.Length - 1], ArbitroInsertar);
                ArbitroInsertar.Foto = urlImagen;
            }

            return(ApiRest.InsertArbitro(ArbitroInsertar));
        }