USP_CMSCSSCLASS_DELETE_BYCONTENTID
Executes the "CssClass Delete By Content Type" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | int | IN | Input parameter indicating the ID of the record being deleted. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the delete. |
Definition
Copy
CREATE procedure dbo.USP_CMSCSSCLASS_DELETE_BYCONTENTID
(
@ID int,
@CHANGEAGENTID uniqueidentifier
)
as begin
delete from dbo.cssclasses where contenttypeid=@ID
return 0;
end