Example #1
0
 /// <summary>
 /// Deprecated Method for adding a new object to the UserGroups EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUserGroups(UserGroup userGroup)
 {
     base.AddObject("UserGroups", userGroup);
 }
Example #2
0
 /// <summary>
 /// Create a new UserGroup object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="description">Initial value of the Description property.</param>
 public static UserGroup CreateUserGroup(global::System.Int32 id, global::System.String name, global::System.String description)
 {
     UserGroup userGroup = new UserGroup();
     userGroup.Id = id;
     userGroup.Name = name;
     userGroup.Description = description;
     return userGroup;
 }