public override void LoadTempIntoFlowLayout() { DTPaciente last_added = BufferPaciente.Instance.buffer[BufferPaciente.Instance.buffer.Count - 1].paciente; UCHistoriaClinica ucp = this.adaptadorUC.Traducir(last_added); ucp.index_paciente = BufferPaciente.Instance.buffer.Count - 1; ucp.labelApellidos.Text = ucp.index_paciente.ToString() + " : " + BufferPaciente.Instance.buffer[ucp.index_paciente].paciente.id.ToString(); ((System.Windows.Forms.FlowLayoutPanel) this.flowLayout).Controls.Add(ucp); BufferPaciente.Instance.DropTemp(); }
public override void LoadBufferToFlowLayoutPanel() { for (int i = 0; i < BufferPaciente.Instance.buffer.Count; i++) { UCHistoriaClinica ucp = this.adaptadorUC.Traducir(BufferPaciente.Instance.buffer[i].paciente); ucp.index_paciente = i; //ucp.labelApellidos.Text = ucp.index_paciente.ToString() + " : " + BufferPaciente.Instance.buffer[ucp.index_paciente].paciente.id.ToString(); ((System.Windows.Forms.FlowLayoutPanel) this.flowLayout).Controls. Add(ucp); } }
public override void LoadTempIntoFlowLayout(Object UC, int index) { DTPaciente last_modified = BufferPaciente.Instance.buffer[((UCHistoriaClinica)UC).index_paciente].paciente; ((System.Windows.Forms.FlowLayoutPanel) this.flowLayout).Controls.Remove((UCHistoriaClinica)UC); ((UCHistoriaClinica)UC).Dispose(); UCHistoriaClinica ucp = adaptadorUC.Traducir(last_modified); ucp.index_paciente = ((UCHistoriaClinica)UC).index_paciente; ucp.labelApellidos.Text = ucp.index_paciente.ToString() + " : " + BufferPaciente.Instance.buffer[ucp.index_paciente].paciente.id.ToString(); ((System.Windows.Forms.FlowLayoutPanel) this.flowLayout).Controls. Add(ucp); BufferPaciente.Instance.DropTemp(); }
public void Traducir(ref UCHistoriaClinica uchc1, DTPaciente p) { CentroSaludSantaIsabel.UCHistoriaClinica uchc2 = Traducir(p); uchc1.labelNombres.Text = uchc2.labelNombres.Text; uchc1.labelApellidos.Text = uchc2.labelApellidos.Text; }