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