/// <summary>
 /// Deprecated Method for adding a new object to the CustomerDataFlakes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCustomerDataFlakes(CustomerDataFlake customerDataFlake)
 {
     base.AddObject("CustomerDataFlakes", customerDataFlake);
 }
 /// <summary>
 /// Create a new CustomerDataFlake object.
 /// </summary>
 /// <param name="flakeID">Initial value of the FlakeID property.</param>
 /// <param name="marketID">Initial value of the MarketID property.</param>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="contentScope">Initial value of the ContentScope property.</param>
 /// <param name="entityID">Initial value of the EntityID property.</param>
 /// <param name="dataKey">Initial value of the DataKey property.</param>
 /// <param name="dataIndex">Initial value of the DataIndex property.</param>
 /// <param name="jsonData">Initial value of the JsonData property.</param>
 /// <param name="jsonSchema">Initial value of the JsonSchema property.</param>
 /// <param name="created">Initial value of the Created property.</param>
 /// <param name="lastModified">Initial value of the LastModified property.</param>
 /// <param name="version">Initial value of the Version property.</param>
 public static CustomerDataFlake CreateCustomerDataFlake(global::System.Int32 flakeID, global::System.Int32 marketID, global::System.Int32 customerID, global::System.Int32 contentScope, global::System.Int32 entityID, global::System.String dataKey, global::System.Int32 dataIndex, global::System.String jsonData, global::System.String jsonSchema, global::System.DateTime created, global::System.DateTime lastModified, global::System.Byte[] version)
 {
     CustomerDataFlake customerDataFlake = new CustomerDataFlake();
     customerDataFlake.FlakeID = flakeID;
     customerDataFlake.MarketID = marketID;
     customerDataFlake.CustomerID = customerID;
     customerDataFlake.ContentScope = contentScope;
     customerDataFlake.EntityID = entityID;
     customerDataFlake.DataKey = dataKey;
     customerDataFlake.DataIndex = dataIndex;
     customerDataFlake.JsonData = jsonData;
     customerDataFlake.JsonSchema = jsonSchema;
     customerDataFlake.Created = created;
     customerDataFlake.LastModified = lastModified;
     customerDataFlake.Version = version;
     return customerDataFlake;
 }