/// <summary> /// Create a new Client object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="email">Initial value of the Email property.</param> public static Client CreateClient(global::System.Int32 id, global::System.String name, global::System.String email) { Client client = new Client(); client.Id = id; client.Name = name; client.Email = email; return client; }
/// <summary> /// Deprecated Method for adding a new object to the Client EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToClient(Client client) { base.AddObject("Client", client); }