Esempio n. 1
0
 protected void radGridMedicamentos_NeedDataSource(object sender, GridNeedDataSourceEventArgs e)
 {
     try
     {
         negocioPaciente = new PacienteNegocio();
         radGridMedicamentos.DataSource = negocioPaciente.ConsultaMedicamentosPaciente(Convert.ToInt16(Request.QueryString["idTipoIdentificacion"]), Request.QueryString["NumeroIdentifacion"], Constantes.TIPOEVENTOMEDICAMENTOS);
     }
     catch (Exception ex)
     {
         RadNotificationMensajes.Show(ex.Message);
     }
 }