示例#1
0
 private static bool IsExistsNotAutoSetVirtual(int ProductSysNo)
 {
     try
     {
         if (ProductSysNo > 0)
         {
             int num = SecKillDA.CountProduct_NotAutoSetVirtual(ProductSysNo);
             return(num > 0 ? true : false);
         }
         else
         {
             return(false);
         }
     }
     catch (Exception ex)
     {
         WriteLog(ex.Message);
         throw new Exception(ex.Message);
     }
 }