/// <summary> /// Run ContentInspection_SelectBy_ContentInspectionId, and return results as a list of ContentInspectionRow. /// </summary> /// <param name="fldContentInspectionId">Value for ContentInspectionId</param> /// <returns>A collection of ContentInspectionRow.</returns> public static List <ContentInspectionContract> SelectBy_ContentInspectionIdNow(int fldContentInspectionId ) { var driver = new ContentInspectionLogic(); driver.SelectBy_ContentInspectionId(fldContentInspectionId ); return(driver.Results); }
/// <summary> /// Run ContentInspection_SelectBy_ContentInspectionId, and return results as a list of ContentInspectionRow. /// </summary> /// <param name="fldContentInspectionId">Value for ContentInspectionId</param> /// <param name="connection">The SqlConnection to use</param> /// <param name="transaction">The SqlTransaction to use</param> /// <returns>A collection of ContentInspectionRow.</returns> public static List <ContentInspectionContract> SelectBy_ContentInspectionIdNow(int fldContentInspectionId , SqlConnection connection, SqlTransaction transaction) { var driver = new ContentInspectionLogic(); driver.SelectBy_ContentInspectionId(fldContentInspectionId , connection, transaction); return(driver.Results); }