Example #1
0
        internal async Task ModificarAsync(GastoListadoItem gastoListadoItem)
        {
            GastoDetalleForm gastoDetalleForm = new GastoDetalleForm(gastoListadoItem.Gasto);

            gastoDetalleForm.ShowDialog();
            await BuscarAsync();
        }
Example #2
0
        internal async Task NuevoAsync()
        {
            GastoDetalleForm gastoDetalleForm = new GastoDetalleForm();

            gastoDetalleForm.ShowDialog();
            await BuscarAsync();
        }