Beispiel #1
0
        protected override void AddAction()
        {
            DocumentoNewInputForm f = new DocumentoNewInputForm(_entity, this);

            f.ShowDialog(this);
            RefreshSecondaryData();
        }
Beispiel #2
0
        protected override void ReplaceAction()
        {
            if (CurrentDocumento == null)
            {
                return;
            }

            DocumentoNewInputForm f = new DocumentoNewInputForm(_entity, CurrentDocumento);

            f.ShowDialog();
            RefreshSecondaryData();
        }