/// <summary>
 /// Deprecated Method for adding a new object to the OrderFlowStats EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToOrderFlowStats(OrderFlowStats orderFlowStats)
 {
     base.AddObject("OrderFlowStats", orderFlowStats);
 }
 /// <summary>
 /// Create a new OrderFlowStats object.
 /// </summary>
 /// <param name="orderFlowId">Initial value of the OrderFlowId property.</param>
 /// <param name="orderState">Initial value of the OrderState property.</param>
 /// <param name="createUser">Initial value of the CreateUser property.</param>
 /// <param name="createTime">Initial value of the CreateTime property.</param>
 public static OrderFlowStats CreateOrderFlowStats(global::System.Int32 orderFlowId, global::System.Int32 orderState, global::System.String createUser, global::System.DateTime createTime)
 {
     OrderFlowStats orderFlowStats = new OrderFlowStats();
     orderFlowStats.OrderFlowId = orderFlowId;
     orderFlowStats.OrderState = orderState;
     orderFlowStats.CreateUser = createUser;
     orderFlowStats.CreateTime = createTime;
     return orderFlowStats;
 }