public string Gets() { mPlantillas o = new mPlantillas(); List<vPL_PLANTILLA> lPlantillas = o.Gets(); foreach (vPL_PLANTILLA item in lPlantillas) { item.lSecciones = new List<vPL_SECCIONES>(); } return ByAUtil.convertListToXML(lPlantillas); }
public List<vPL_PLANTILLA> GetsActivasJson() { mPlantillas o = new mPlantillas(); List<vPL_PLANTILLA> lPlantillas = o.Gets(); foreach (vPL_PLANTILLA item in lPlantillas) { item.lSecciones = new List<vPL_SECCIONES>(); } List<vPL_PLANTILLA> lPlantillas2 = new List<vPL_PLANTILLA>(); lPlantillas2 = lPlantillas.Where(t => t.EST_PLA == "AC").ToList(); return lPlantillas2; }
public string GetsActivas() { mPlantillas o = new mPlantillas(); List<vPL_PLANTILLA> lPlantillas = o.Gets(); foreach (vPL_PLANTILLA item in lPlantillas) { item.lSecciones = new List<vPL_SECCIONES>(); } List<vPL_PLANTILLA> lPlantillas2 = new List<vPL_PLANTILLA>(); lPlantillas2 = lPlantillas.Where(t => t.EST_PLA == "AC").ToList(); return ByAUtil.convertListToXML(lPlantillas2); }