public TelaCadastroEmpresa() { InitializeComponent(); this._controlador = new ControladorCadastroEmpresa(this); this._telaCidade = new TelaCadastroCidade(); this._telaCidade.EmBusca = true; }
public void AbrirCadastroCidades() { TelaCadastroCidade tela = new TelaCadastroCidade(); try { tela.ShowDialog(); } finally { tela.Dispose(); tela = null; } }