private void MostrarObrasSociales()
        {
            try
            {
                ObraSocialBusiness wObraSocialBP = new ObraSocialBusiness(DaoFactory.GetObraSocialDao());
                this.ObraSocialEntities = wObraSocialBP.GetAll();
                this.bscOrigenReporte.DataSource = this.ObraSocialEntities;
                reportViewer1.RefreshReport();
            }
            catch (Exception ex)
            {

                ProcesarExcepcion(ex);
            }
        }
Exemplo n.º 2
0
 private void frmObraSocial_Load(object sender, EventArgs e)
 {
     _ObraSocialBP = new ObraSocialBusiness(DaoFactory.GetObraSocialDao());
     LoadList();
 }