Example #1
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);
 }
Example #2
0
 private void UserGrid_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     index = e.RowIndex;
     user = users[index];
 }
Example #3
0
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 public static User CreateUser(global::System.Guid id, global::System.String name, global::System.String password, global::System.String email)
 {
     User user = new User();
     user.ID = id;
     user.Name = name;
     user.Password = password;
     user.Email = email;
     return user;
 }