public List <wsBaseItem> ws_selectDevListByPlace(int?ID, out string OpStatus, out string Path) { try { OpStatus = "Выполнено"; DeviceDataManager DDM = new DeviceDataManager(); Path = DDM.selectPlaceParents(ID); return(DDM.selectDevListByPlace(ID)); } catch (Exception err) { OpStatus = err.Message.ToString(); Path = ""; return(null); } }
public List<wsBaseItem> ws_selectDevListByPlace(int? ID, out string OpStatus, out string Path) { try { OpStatus = "Выполнено"; DeviceDataManager DDM = new DeviceDataManager(); Path = DDM.selectPlaceParents(ID); return DDM.selectDevListByPlace(ID); } catch (Exception err) { OpStatus = err.Message.ToString(); Path = ""; return null; } }