public TelaCadastroEmpresa()
 {
     InitializeComponent();
     this._controlador = new ControladorCadastroEmpresa(this);
     this._telaCidade = new TelaCadastroCidade();
     this._telaCidade.EmBusca = true;
 }
Esempio n. 2
0
 public TelaCadastroEmpresa()
 {
     InitializeComponent();
     this._controlador        = new ControladorCadastroEmpresa(this);
     this._telaCidade         = new TelaCadastroCidade();
     this._telaCidade.EmBusca = true;
 }
Esempio n. 3
0
        public void AbrirCadastroCidades()
        {
            TelaCadastroCidade tela = new TelaCadastroCidade();

            try {
                tela.ShowDialog();
            } finally {
                tela.Dispose();
                tela = null;
            }
        }