/// <summary> /// Deprecated Method for adding a new object to the accounts EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToaccounts(account account) { base.AddObject("accounts", account); }
/// <summary> /// Create a new account object. /// </summary> /// <param name="account_id">Initial value of the account_id property.</param> /// <param name="password">Initial value of the password property.</param> /// <param name="accountname">Initial value of the accountname property.</param> /// <param name="domain">Initial value of the domain property.</param> /// <param name="createtime">Initial value of the createtime property.</param> /// <param name="modtime">Initial value of the modtime property.</param> public static account Createaccount(global::System.Int64 account_id, global::System.String password, global::System.String accountname, global::System.String domain, global::System.DateTime createtime, global::System.DateTime modtime) { account account = new account(); account.account_id = account_id; account.password = password; account.accountname = accountname; account.domain = domain; account.createtime = createtime; account.modtime = modtime; return account; }