//Operaciones de BLOCK
        #region BLOCK

        public async Task AddBloc(Block block)
        {
            //Con gettable recuperas el formato de la tabla que le indicas.
            var tabla = cliente.GetTable<Block>();
            //Insertas en la tabla formateada el objeto recibido
            await tabla.InsertAsync(block);
        }
 public async Task UpdateBlock(Block block)
 {
     var tabla = cliente.GetTable<Block>();
     await tabla.UpdateAsync(block);
 }
 //Como usamos azure mobile services hay que ceñirnos a su arquitectura, por eso el delete y update
 //lo haces pasando el block entero
 public async Task DeleteBlock(Block block)
 {
     //Para borrar, mejor pasar el block entero, no solo el ID
     var tabla = cliente.GetTable<Block>();
     await tabla.DeleteAsync(block);
 }
 public NuevoBlockViewModel(INavigator navigator, IServicioDatos servicio, Session session) : 
     base(navigator, servicio, session)
 {
     _block=new Block();
     cmdGuardar=new Command(GuardarBlock);
 }