/// <summary>
 /// Deprecated Method for adding a new object to the account EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToaccount(account account)
 {
     base.AddObject("account", account);
 }
 /// <summary>
 /// Create a new account object.
 /// </summary>
 /// <param name="account_id">Initial value of the account_id property.</param>
 /// <param name="account_no">Initial value of the account_no property.</param>
 /// <param name="status">Initial value of the status property.</param>
 public static account Createaccount(global::System.Decimal account_id, global::System.String account_no, global::System.String status)
 {
     account account = new account();
     account.account_id = account_id;
     account.account_no = account_no;
     account.status = status;
     return account;
 }