示例#1
0
 public Boolean Add(MonitorController_Agroor agroor)
 {
     if (!IsFull())
     {
         _agroors.Add(agroor);
         return true;
     }
     return false;
 }
示例#2
0
        public void CreateAgroor(POrder order)
        {
            if (IsFull())
            {
                return;
            }

            MonitorController_Agroor agroor = new MonitorController_Agroor(order, this);
            Add(agroor);
        }
 public Monitor_Agroor_Ready(MonitorController_Agroor parent)
 {
     this.Parent = parent;
 }