spLoadRecord_ShoppingCartSummaryPart

Parameters

Parameter Parameter Type Mode Description
@PKID int IN

Definition

Copy


            create procedure dbo.spLoadRecord_ShoppingCartSummaryPart (@PKID int) as
                select 
                    ID,
                    SiteContentID,
                    ShoppingCartPartID
                from ShoppingCartSummaryPart 
                where ID = @PKID;