Example #1
0
        public void listarCartaProgramadorSala(string codEstadoCarta, string fechaini, string fechafin, bool qxprogramado, string preQx)
        {
            IOrdenIQxService _service = new OrdenIQxService();

            this.listOIQx = new List <OIQuirurgicaModel>();
            var lista = _service.listarCartasProgramador(codEstadoCarta, fechaini, fechafin, qxprogramado, preQx);

            this.listOIQx = DTOToModel.listaCartaOrdenIQx(lista);
        }
Example #2
0
        public void listarCartaPreQx(string busqueda, string especialidad, string codTipoCirugia, string fecinicio, string fecfin, bool reqpreqx, string codEstado)
        {
            IOrdenIQxService _service = new OrdenIQxService();

            this.listOIQx = new List <OIQuirurgicaModel>();
            var lista = _service.listarCartasPreQx(busqueda, especialidad, codTipoCirugia, fecinicio, fecfin, reqpreqx, codEstado);

            this.listOIQx = DTOToModel.listaCartaOrdenIQx(lista);
        }