/// <summary> /// Create a new Cliente object. /// </summary> /// <param name="idcliente">Initial value of the idcliente property.</param> /// <param name="direccion">Initial value of the direccion property.</param> /// <param name="tipocliente">Initial value of the tipocliente property.</param> public static Cliente CreateCliente(global::System.Int32 idcliente, global::System.String direccion, global::System.String tipocliente) { Cliente cliente = new Cliente(); cliente.idcliente = idcliente; cliente.direccion = direccion; cliente.tipocliente = tipocliente; return cliente; }
/// <summary> /// Deprecated Method for adding a new object to the Cliente EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCliente(Cliente cliente) { base.AddObject("Cliente", cliente); }