/// <summary> /// Create a new Permission object. /// </summary> /// <param name="permissionID">Initial value of the PermissionID property.</param> /// <param name="code">Initial value of the Code property.</param> public static Permission CreatePermission(global::System.Int32 permissionID, global::System.Int32 code) { Permission permission = new Permission(); permission.PermissionID = permissionID; permission.Code = code; return permission; }
private bool FilterPermission(Permission entity) { return (entity.Code == this.PermissionCode); }
/// <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); }