using Rs.MotionPlat.Flow; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Rs.MotionPlat.Commom { public class VacManager { public static bool AllIsSafe() { bool[] safe = new[] { false,false}; //AxisControl.VacZ1.GetOrgStatus(out safe[0]); //AxisControl.VacZ2.GetOrgStatus(out safe[0]); return safe.Where(b => b == false).Count() == 0; } public static void OpenLoadNozzle(List nozzleIndexs) { } } }