spDelete_ContentTypes
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@PKID | int | IN | |
@CurrentUsersID | int | IN |
Definition
Copy
CREATE PROCEDURE dbo.spDelete_ContentTypes
(
@PKID int,
@CurrentUsersID int
)
AS
declare @Guid uniqueidentifier
begin transaction
DELETE FROM ContentTypes where ID = @PKID
commit