/// <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="surname">Initial value of the Surname property.</param> /// <param name="cellPhoneNo">Initial value of the CellPhoneNo property.</param> /// <param name="emailAddress">Initial value of the EmailAddress property.</param> public static Client CreateClient(global::System.Int32 id, global::System.String name, global::System.String surname, global::System.String cellPhoneNo, global::System.String emailAddress) { Client client = new Client(); client.Id = id; client.Name = name; client.Surname = surname; client.CellPhoneNo = cellPhoneNo; client.EmailAddress = emailAddress; return client; }
/// <summary> /// Deprecated Method for adding a new object to the Clients EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToClients(Client client) { base.AddObject("Clients", client); }