Ejemplo n.º 1
0
 /// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ContactDetails == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "ContactDetails");
     }
     if (ShippingAddress == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "ShippingAddress");
     }
     if (DestinationAccountDetails == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "DestinationAccountDetails");
     }
     if (ContactDetails != null)
     {
         ContactDetails.Validate();
     }
     if (ShippingAddress != null)
     {
         ShippingAddress.Validate();
     }
     if (Preferences != null)
     {
         Preferences.Validate();
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ContactDetails == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "ContactDetails");
     }
     if (ShippingAddress == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "ShippingAddress");
     }
     if (DestinationAccountDetails == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "DestinationAccountDetails");
     }
     if (ContactDetails != null)
     {
         ContactDetails.Validate();
     }
     if (ShippingAddress != null)
     {
         ShippingAddress.Validate();
     }
     if (DestinationAccountDetails != null)
     {
         foreach (var element in DestinationAccountDetails)
         {
             if (element != null)
             {
                 element.Validate();
             }
         }
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ShippingAddress == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "ShippingAddress");
     }
     if (ShippingAddress != null)
     {
         ShippingAddress.Validate();
     }
 }
 /// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="Rest.ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ContactDetails != null)
     {
         ContactDetails.Validate();
     }
     if (ShippingAddress != null)
     {
         ShippingAddress.Validate();
     }
     if (KeyEncryptionKey != null)
     {
         KeyEncryptionKey.Validate();
     }
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ContactDetails == null)
     {
         throw new ValidationException(ValidationRules.CannotBeNull, "ContactDetails");
     }
     if (ContactDetails != null)
     {
         ContactDetails.Validate();
     }
     if (ShippingAddress != null)
     {
         ShippingAddress.Validate();
     }
     if (DataImportDetails != null)
     {
         foreach (var element in DataImportDetails)
         {
             if (element != null)
             {
                 element.Validate();
             }
         }
     }
     if (DataExportDetails != null)
     {
         foreach (var element1 in DataExportDetails)
         {
             if (element1 != null)
             {
                 element1.Validate();
             }
         }
     }
     if (Preferences != null)
     {
         Preferences.Validate();
     }
     if (KeyEncryptionKey != null)
     {
         KeyEncryptionKey.Validate();
     }
 }