/// ----------------------------------------------------------------------------- /// <summary> /// gets an object from the database /// </summary> /// <remarks> /// </remarks> /// <param name="moduleId">The Id of the module</param> /// <history> /// </history> /// ----------------------------------------------------------------------------- public List <SF_QuantificationReportInfo> GetSF_QuantificationReports(int ModuleId) { return(CBO.FillCollection <SF_QuantificationReportInfo>(DataProvider.Instance().GetSF_QuantificationReports(ModuleId))); }
/// ----------------------------------------------------------------------------- /// <summary> /// deletes an object from the database /// </summary> /// <remarks> /// </remarks> /// <param name="ModuleId">The Id of the module</param> /// <param name="ItemId">The Id of the item</param> /// <history> /// </history> /// ----------------------------------------------------------------------------- public void DeleteSF_QuantificationReport(int ModuleId, int ItemId) { DataProvider.Instance().DeleteSF_QuantificationReport(ModuleId, ItemId); }
/// ----------------------------------------------------------------------------- /// <summary> /// gets an object from the database /// </summary> /// <remarks> /// </remarks> /// <param name="moduleId">The Id of the module</param> /// <param name="ItemId">The Id of the item</param> /// <history> /// </history> /// ----------------------------------------------------------------------------- public SF_QuantificationReportInfo GetSF_QuantificationReport(int ModuleId, int ItemId) { return(CBO.FillObject <SF_QuantificationReportInfo>(DataProvider.Instance().GetSF_QuantificationReport(ModuleId, ItemId))); }