CREATE PROCEDURE [dbo].[Products_GetRecordCount]
AS
BEGIN
  SET NOCOUNT ON;
 
  SELECT COUNT(*) AS RecordCount FROM [dbo].[Products]
END