USP_SITEIMAGES_DELETE
Executes the "Image Delete" 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_SITEIMAGES_DELETE]
(
@ID integer,
@CHANGEAGENTID uniqueidentifier
)
as
begin
exec dbo.spDelete_SiteImages @ID, 1
return 0;
end