Beispiel #1
0
        public void SaveFeatureListLang(string PortalId, string strStoreGuid, FeatureListLangInfo featureListLang, string Token)
        {
            int portalId = -1;

            Int32.TryParse(PortalId, out portalId);
            if (portalId < 0)
            {
                throw new Exception("PortalId must be zero or greater");
            }

            if (featureListLang == null)
            {
                throw new Exception("FeatureListLang must not be null");
            }

            Guid storeGuid = new Guid(strStoreGuid);

            if (storeGuid == Guid.Empty)
            {
                throw new Exception("StoreGuid must be valid!");
            }

            ImportController.SaveFeatureListLang(portalId, featureListLang, storeGuid);
        }
Beispiel #2
0
 public abstract void UpdateFeatureListLang(FeatureListLangInfo FeatureListLang);
Beispiel #3
0
 public abstract void NewFeatureListLang(FeatureListLangInfo FeatureListLang);