Example #1
0
 /**
  *  Is Match PO posted
  *	@return true if posed
  */
 public bool IsMatchPOPosted()
 {
     MMatchPO[] po = GetMatchPO();
     for (int i = 0; i < po.Length; i++)
     {
         MMatchPO matchPO = po[i];
         if (!matchPO.IsPosted())
         {
             return(false);
         }
     }
     return(true);
 }