private void btnAtencion_Click(object sender, EventArgs e) { if (validacion()) { try { ClaseAtencion Atencion = new ClaseAtencion(Convert.ToInt32(this.txtIdMascota.Text), Convert.ToInt32(this.txtIdVeterinario.Text), this.dtpFechaAtencion.Value, this.rhtDiagnostico.Rtf, this.rhtReceta.Rtf); MessageBox.Show("Registro : " + Atencion.Ingresar(Atencion)); } catch (Exception ex) { MessageBox.Show(ex.Message); } } else { MessageBox.Show("Registro no ingresado, Datos erroneos", "Ingreso",MessageBoxButtons.OK,MessageBoxIcon.Error); } }
public String Modificar(ClaseAtencion Atencion) { string sw = ""; return sw; }
public String Ingresar(ClaseAtencion Atencion) { string sw = ""; return sw; }