コード例 #1
0
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="rowVersion">Initial value of the RowVersion property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="createDate">Initial value of the CreateDate property.</param>
 /// <param name="user_Office">Initial value of the User_Office property.</param>
 /// <param name="user_UserType">Initial value of the User_UserType property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.Byte[] rowVersion, global::System.String name, global::System.String createDate, global::System.Int32 user_Office, global::System.Int32 user_UserType)
 {
     User user = new User();
     user.Id = id;
     user.RowVersion = rowVersion;
     user.Name = name;
     user.CreateDate = createDate;
     user.User_Office = user_Office;
     user.User_UserType = user_UserType;
     return user;
 }
コード例 #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
コード例 #3
0
ファイル: ApplicationData.cs プロジェクト: jsadony/LSHelpdesk
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="rowVersion">Initial value of the RowVersion property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.Byte[] rowVersion, global::System.String firstName)
 {
     User user = new User();
     user.Id = id;
     user.RowVersion = rowVersion;
     user.FirstName = firstName;
     return user;
 }