示例#1
0
        public void getCombosProgramadorSala()
        {
            SelectViewModel select = new SelectViewModel();

            this.lstEstadosPreQx = new List <FiltroModel>();
            this.lstEstados      = new List <FiltroModel>();
            this.lstEstadosPreQx = select.listaEstadosPreQx();
            this.lstEstados      = select.listaEstados();
        }
示例#2
0
        public void getCombosPreQX()
        {
            SelectViewModel select = new SelectViewModel();

            this.lstEstadosPreQx   = new List <FiltroModel>();
            this.lstEspecialidades = new List <FiltroModel>();
            this.lstTipoDocumentos = new List <FiltroModel>();
            this.lstEstadosPreQx   = select.listaEstadosPreQx();
            this.lstEspecialidades = select.listaEspecialidades();
            this.lstTipoCirugia    = select.listaTipoCirugia();
        }
示例#3
0
        public void getPreQxyEstadoPreqx(int id)
        {
            SelectViewModel select = new SelectViewModel();

            this.lstEstadosPreQx  = new List <FiltroModel>();
            this.lstEstadosPreQx  = select.listaEstadosPreQx();
            this.lstTipoAnestesia = new List <FiltroModel>();
            this.lstTipoAnestesia = select.listaTipoAnestesia();
            this.lstPreQx         = new List <ListaPreQx>();
            ICartaGarantiaService _service = new CartaGarantiaService();

            this.lstPreQx = DTOToModel.listarPreQx(_service.preqxXcarta(id));
        }