/// <summary> /// Deprecated Method for adding a new object to the Permissions EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToPermissions(Permission permission) { base.AddObject("Permissions", permission); }
/// <summary> /// Create a new Permission 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> /// <param name="deleted">Initial value of the Deleted property.</param> public static Permission CreatePermission(global::System.Int32 id, global::System.String name, global::System.String description, global::System.Boolean deleted) { Permission permission = new Permission(); permission.Id = id; permission.Name = name; permission.Description = description; permission.Deleted = deleted; return permission; }