}//GetPersonList public string GetPersonList(string funcPara) { StringBuilder ret = new StringBuilder(); ServiceREF.CoreService.CoreService service = new ServiceREF.CoreService.CoreService(); string InputValue = CXmlPara.CreatePara(funcPara); ServiceREF.CoreService.COutputValue temp = new ServiceREF.CoreService.COutputValue(); ServiceREF.CoreService.CPerson[] list = service.GetPersonList(funcPara, ref temp); foreach (var item in list) { if (item != null) { if (item != null) { ret.AppendFormat("{0}|{1}|{2}\n", item.Code, item.Name, item.ID); } } } return(ret.ToString()); }//
public CTranferStockUI() { iv_service = new InventoryService(); core_service = new ServiceREF.CoreService.CoreService(); gl_service = new GeneralLedgerService(); }
public ConfigUI() { service = new ServiceREF.CoreService.CoreService(); }