Exemple #1
0
        /// <summary>
        /// F9065_s the get snapshot detail.
        /// </summary>
        /// <returns>F9065FieldUseData</returns>
        public static F9065FieldUseData F9065_GetSnapshotDetail()
        {
            F9065FieldUseData fieldUseData = new F9065FieldUseData();
            Hashtable         ht           = new Hashtable();

            Utility.LoadDataSet(fieldUseData.ListSnapshotTable, "f9065_pcget_Snapshot", ht);
            return(fieldUseData);
        }
Exemple #2
0
        /// <summary>
        /// To get Configruation Value
        /// </summary>
        /// <param name="cfgname">The cfgname.</param>
        /// <returns>
        /// Typed dataset containing the Configruation Value.
        /// </returns>
        public static F9065FieldUseData F9065_GetcfgConfiguration(string cfgname)
        {
            F9065FieldUseData fieldUseData = new F9065FieldUseData();
            Hashtable         ht           = new Hashtable();

            ht.Add("@CfgName", cfgname);
            Utility.LoadDataSet(fieldUseData.ListCfgConfigTable, "f9020_pcget_Configuration", ht);
            return(fieldUseData);
        }
Exemple #3
0
        /// <summary>
        /// F9065_s the preview detail.
        /// </summary>
        /// <param name="snapShotId">The snap shot id.</param>
        /// <param name="snapShotDetail">The snap shot detail.</param>
        /// <returns>F9065FieldUseData</returns>
        public static F9065FieldUseData F9065_GetPreviewDetail(int snapShotId, string snapShotDetail)
        {
            F9065FieldUseData fieldUseData = new F9065FieldUseData();
            Hashtable         ht           = new Hashtable();

            ht.Add("@SnapShotID", snapShotId);
            ht.Add("@SnapShotElements", snapShotDetail);
            Utility.LoadDataSet(fieldUseData.ListPreviewDetailTable, "f9065_pcget_PreviewCount", ht);
            return(fieldUseData);
        }