USP_MEMBERSHIPPROGRAMADDON_DELETE

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN
@CHANGEAGENTID uniqueidentifier IN

Definition

Copy


                    CREATE procedure dbo.USP_MEMBERSHIPPROGRAMADDON_DELETE
                    (
                        @ID uniqueidentifier,
                        @CHANGEAGENTID uniqueidentifier
                    )
                    as begin
                        --check deletion rules, if any


                        -- use the system generated delete routine to allow proper recording of the deleting agent

                        exec USP_MEMBERSHIPPROGRAMADDON_DELETEBYID_WITHCHANGEAGENTID @ID, @CHANGEAGENTID
                        return 0;

                    end