/// <summary> /// Create a new Cliente object. /// </summary> /// <param name="idCliente">Initial value of the idCliente property.</param> /// <param name="idDomicilio">Initial value of the idDomicilio property.</param> /// <param name="nombreCliente">Initial value of the NombreCliente property.</param> /// <param name="apellidoCliente">Initial value of the ApellidoCliente property.</param> /// <param name="telefono">Initial value of the Telefono property.</param> /// <param name="celular">Initial value of the Celular property.</param> /// <param name="email">Initial value of the Email property.</param> /// <param name="idEstado">Initial value of the idEstado property.</param> public static Cliente CreateCliente(global::System.Int32 idCliente, global::System.Int32 idDomicilio, global::System.String nombreCliente, global::System.String apellidoCliente, global::System.String telefono, global::System.String celular, global::System.String email, global::System.Int32 idEstado) { Cliente cliente = new Cliente(); cliente.idCliente = idCliente; cliente.idDomicilio = idDomicilio; cliente.NombreCliente = nombreCliente; cliente.ApellidoCliente = apellidoCliente; cliente.Telefono = telefono; cliente.Celular = celular; cliente.Email = email; cliente.idEstado = idEstado; 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); }