internal async Task ModificarAsync(TipoGasto tipoGasto)
        {
            GastoTipoDetalleForm gastoTipoDetalleForm = new GastoTipoDetalleForm(tipoGasto);

            gastoTipoDetalleForm.ShowDialog();
            await BuscarAsync();
        }
        internal async Task NuevoAsync()
        {
            GastoTipoDetalleForm gastoTipoDetalleForm = new GastoTipoDetalleForm();

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