Exemplo n.º 1
0
        public void FireEditEntity(Domain.Country c)
        {
            if (ReadOnly)
            {
                return;
            }
            if (FocusedEntity == null && c == null)
            {
                return;
            }

            using (FormCountryEdit edit = new FormCountryEdit(FocusedEntity))
            {
                edit.ShowDialog();
                return;
            }
        }
Exemplo n.º 2
0
        public void FireEditEntity(Domain.Country c)
        {
            if (ReadOnly) return;
            if (FocusedEntity == null && c == null) return;

            using (FormCountryEdit edit = new FormCountryEdit(FocusedEntity))
            {
                edit.ShowDialog();
                return;
            }
            
        }