private void frmFichadeAtendimento_Load(object sender, EventArgs e) { objAtendimento = new Atendimento(); HoraPedido = DateTime.Now.ToShortTimeString(); txHoraPedido.Text = HoraPedido; objAtendimento.DataAtendimento = DateTime.Now.ToShortDateString(); objAtendimento.HoraAtendimento = txHoraPedido.Text; txData.Text = objAtendimento.DataAtendimento; txNumeroAtendimento.Text = objAtendimento.IdAtendimento.ToString().PadLeft(5, '0'); CarregarEstabelecimentos(); this.ActiveControl = txSolicitante; }
private void frmFichaAtendimento_Load(object sender, EventArgs e) { atendimento = new Atendimento(); paciente = new Paciente(); txHora.Text = DateTime.Now.ToShortTimeString(); txSolicitante.Text = NomeSolicitante; txDataFicha.Text = DateTime.Now.ToShortDateString(); txNumeroEmpenho.Text = atendimento.RetornaULtimoEmpenho().ToString().PadLeft(5, '0'); List<Paciente> ListaPacientesCadastrados = paciente.RetornaListaPacientesCadastrados(); txNomePaciente.AutoCompleteCustomSource.Clear(); foreach (var item in ListaPacientesCadastrados) { txNomePaciente.AutoCompleteCustomSource.Add(item.NomePaciente); } }