Ejemplo n.º 1
0
        public void getIntermedioTelefarmacia(string numeroAdmision)
        {
            this.listaIntermedioTelefarmacia = new List <IntermedioTelefarmaciaModel>();
            IFATDetalleService _fatService = new FATDetalleService();

            this.listaIntermedioTelefarmacia = DTOToModel.listaIntermedioTelefarmacia(_fatService.listaIntermedioTelefarmacia(numeroAdmision));
        }
Ejemplo n.º 2
0
        public void getGuiasDespacho(int id)
        {
            this.listaGuias = new List <GuiasModel>();
            IFATDetalleService _fatService = new FATDetalleService();

            this.listaGuias = DTOToModel.listaGuias(_fatService.guiasReceta(id));
        }
Ejemplo n.º 3
0
        public void getListaFATReceta(string fecinicio, string fecfin, string busqueda, string espec, string estado)
        {
            this.listaAtencion = new List <LstFATModel>();
            IFATDetalleService _fatService = new FATDetalleService();

            this.listaAtencion = DTOToModel.listaFATModel(
                _fatService.bandejaRecetaFAT(fecinicio, fecfin, espec, busqueda, estado));
        }
Ejemplo n.º 4
0
        public List <string> estadosRp()
        {
            IFATDetalleService service = new FATDetalleService();

            return(service.estadosReceta());
        }