/// <summary> /// Deprecated Method for adding a new object to the USERS EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToUSERS(USER uSER) { base.AddObject("USERS", uSER); }
/// <summary> /// Create a new USER object. /// </summary> /// <param name="user_id">Initial value of the user_id property.</param> /// <param name="user_name">Initial value of the user_name property.</param> /// <param name="password">Initial value of the password property.</param> /// <param name="datestamp">Initial value of the datestamp property.</param> public static USER CreateUSER(global::System.Int32 user_id, global::System.String user_name, global::System.String password, global::System.DateTime datestamp) { USER uSER = new USER(); uSER.user_id = user_id; uSER.user_name = user_name; uSER.password = password; uSER.datestamp = datestamp; return uSER; }