public bool isValid()
        {
            if (ValidSerialNumbers.isValid(intSerial) && seqNum != null)
            {
                return(true);
            }

            return(false);
        }
 public bool isValid()
 {
     if (ValidSerialNumbers.isValid(i) && s != null)
     {
         if (b != null || d != null)
         {
             return(true);
         }
     }
     return(false);
 }
 public bool isValid()
 {
     if (ValidSerialNumbers.isValid(i) && s != null)
     {
         try {
             foreach (BackupItem item in b)
             {
                 if (!item.isValid())
                 {
                     return(false);
                 }
             }
         } catch (Exception) {
             return(true);
         }
         return(true);
     }
     else
     {
         return(false);
     }
 }