/// <summary> /// Create a new Role object. /// </summary> /// <param name="roleName">Initial value of the RoleName property.</param> /// <param name="description">Initial value of the Description property.</param> /// <param name="isDeleted">Initial value of the IsDeleted property.</param> public static Role CreateRole(global::System.String roleName, global::System.String description, global::System.Boolean isDeleted) { Role role = new Role(); role.RoleName = roleName; role.Description = description; role.IsDeleted = isDeleted; return role; }
/// <summary> /// Deprecated Method for adding a new object to the Roles EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToRoles(Role role) { base.AddObject("Roles", role); }