林豪 左 2 년 전
부모
커밋
e4959eb656
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Projects/永冠/WCS.Service/Extensions/DeviceExtention.cs

+ 2 - 2
Projects/永冠/WCS.Service/Extensions/DeviceExtention.cs

@@ -13,9 +13,9 @@ namespace WCS.Service.Extensions
         /// </summary>
         /// <param name="deviceList"></param>
         /// <returns></returns>
-        public static List<WCS_DEVICE> DRGVGetValidPickupPoint(this WCS_DEVICE[] deviceList)
+        public static List<Device<IStation521, IStation520, IStation523>> DRGVGetValidPickupPoint(this WCS_DEVICE[] deviceList)
         {
-            return deviceList.ToList().Select(v => v.Device<IStation521, IStation520, IStation523>()).Where(v => v.Data.PH_STATUS && v.Data.TASKNUM > 10000 && !v.Data2.CONFIRM);
+            return deviceList.ToList().Select(v => v.Device<IStation521, IStation520, IStation523>()).Where(v => v.Data.PH_STATUS && v.Data.TASKNUM > 10000 && !v.Data2.CONFIRM).ToList();
         }
     }
 }