/// <summary>
 /// Deprecated Method for adding a new object to the ClientInfoes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToClientInfoes(ClientInfo clientInfo)
 {
     base.AddObject("ClientInfoes", clientInfo);
 }
 /// <summary>
 /// Create a new ClientInfo object.
 /// </summary>
 /// <param name="clientId">Initial value of the ClientId property.</param>
 /// <param name="oasisClientId">Initial value of the OasisClientId property.</param>
 /// <param name="effectiveDate">Initial value of the EffectiveDate property.</param>
 /// <param name="expirationDate">Initial value of the ExpirationDate property.</param>
 /// <param name="lastModifiedBy">Initial value of the LastModifiedBy property.</param>
 /// <param name="lastModifiedDate">Initial value of the LastModifiedDate property.</param>
 public static ClientInfo CreateClientInfo(global::System.Int32 clientId, global::System.String oasisClientId, global::System.DateTime effectiveDate, global::System.DateTime expirationDate, global::System.String lastModifiedBy, global::System.DateTime lastModifiedDate)
 {
     ClientInfo clientInfo = new ClientInfo();
     clientInfo.ClientId = clientId;
     clientInfo.OasisClientId = oasisClientId;
     clientInfo.EffectiveDate = effectiveDate;
     clientInfo.ExpirationDate = expirationDate;
     clientInfo.LastModifiedBy = lastModifiedBy;
     clientInfo.LastModifiedDate = lastModifiedDate;
     return clientInfo;
 }