CREATE PROCEDURE [dbo].[sp_TestSetupROIsGet] @TestSetupId int AS BEGIN SET NOCOUNT ON; SELECT [TestSetupROIId], [TestSetupId], [Suffix], [ROIStart], [ROIEnd], [IsEnabled], [IsDefault] FROM [dbo].[TestSetupROIs] WHERE TestSetupId = @TestSetupId END