예제 #1
0
 /*  Get Active Addl. Product Downloads
  *	@return array of downloads
  */
 public MProductDownload[] GetProductDownloads()
 {
     if (_product == null)
     {
         GetProduct();
     }
     if (_product != null)
     {
         return(_product.GetProductDownloads(false));
     }
     return(null);
 }