Exemple #1
0
        /// <summary>
        /// Lists the type of the MAD import file.
        /// </summary>
        /// <returns>The dataset containing the MAD Import FileType</returns>
        public static F23300MADImportTemplate ListMADImportFileType()
        {
            F23300MADImportTemplate MADImportData = new F23300MADImportTemplate();
            Hashtable ht = new Hashtable();

            Utility.LoadDataSet(MADImportData.ListMADImportFileType, "f23300_pclst_MADImportFileType", ht);
            return(MADImportData);
        }
Exemple #2
0
        /// <summary>
        /// Gets the MAD import template.
        /// </summary>
        /// <param name="templateId">The template id.</param>
        /// <returns>The dataset containing the MAD Import information based on templateId</returns>
        public static F23300MADImportTemplate GetMADImportTemplate(int templateId)
        {
            F23300MADImportTemplate MADImpotTemplateData = new F23300MADImportTemplate();
            Hashtable ht = new Hashtable();

            ht.Add("@TemplateID", templateId);
            Utility.LoadDataSet(MADImpotTemplateData.GetMADImportTemplate, "f23300_pcget_MADImportTemplate", ht);
            return(MADImpotTemplateData);
        }