/// <summary>Initializes a new instance of the <see cref="T:Microsoft.Xrm.Sdk.Metadata.BooleanAttributeMetadata"></see> class</summary>
 /// <param name="optionSet">Type: <see cref="T:Microsoft.Xrm.Sdk.Metadata.BooleanOptionSetMetadata"></see> The definition of the options</param>
 /// <param name="schemaName">Type: Returns_String
 /// The schema name of the attribute.</param>
 public BooleanAttributeMetadata(string schemaName, BooleanOptionSetMetadata optionSet)
     : base(AttributeTypeCode.Boolean, schemaName)
 {
     this.OptionSet = optionSet;
 }
 /// <summary>Initializes a new instance of the <see cref="T:Microsoft.Xrm.Sdk.Metadata.BooleanAttributeMetadata"></see> class</summary>
 /// <param name="optionSet">Type: <see cref="T:Microsoft.Xrm.Sdk.Metadata.BooleanOptionSetMetadata"></see> The definition of the options</param>
 public BooleanAttributeMetadata(BooleanOptionSetMetadata optionSet)
     : this((string)null, optionSet)
 {
 }