Ejemplo n.º 1
0
 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);
     }
 }
Ejemplo n.º 2
0
 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;
     }
 }