//todo 003. implementamos las modificaciones que acabamos de hacer en el interfaz #region Bloc public async Task AddBloc(Bloc bloc) { var table = client.GetTable<Bloc>(); await table.InsertAsync(bloc); //todo 004. Ojo, azure mobile service devuelve un void //todo 005. AzureMobileService implementa OData }
public async Task UpdateBloc(Bloc bloc) { var table = client.GetTable<Bloc>(); await table.UpdateAsync(bloc); }
public NuevoBlocViewModel(INavigator navigator, IServicioDatos servicio, Session session) : base(navigator, servicio, session) { _bloc = new Bloc(); CmdGuardar= new Command(Guardar); }