/// <summary> /// Create a new tblUser object. /// </summary> /// <param name="userName">Initial value of the UserName property.</param> /// <param name="emailID">Initial value of the EmailID property.</param> /// <param name="displayName">Initial value of the DisplayName property.</param> /// <param name="dateJoined">Initial value of the DateJoined property.</param> /// <param name="password">Initial value of the Password property.</param> public static tblUser CreatetblUser(global::System.String userName, global::System.String emailID, global::System.String displayName, global::System.DateTime dateJoined, global::System.String password) { tblUser tblUser = new tblUser(); tblUser.UserName = userName; tblUser.EmailID = emailID; tblUser.DisplayName = displayName; tblUser.DateJoined = dateJoined; tblUser.Password = password; return tblUser; }
/// <summary> /// Deprecated Method for adding a new object to the tblUsers EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddTotblUsers(tblUser tblUser) { base.AddObject("tblUsers", tblUser); }