Example #1
0
        public void SaveFeatureGroupLang(string PortalId, string strStoreGuid, FeatureGroupLangInfo featureGroupLang, string Token)
        {
            int portalId = -1;

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

            if (featureGroupLang == null)
            {
                throw new Exception("FeatureGroupLang must not be null");
            }

            Guid storeGuid = new Guid(strStoreGuid);

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

            ImportController.SaveFeatureGroupLang(portalId, featureGroupLang, storeGuid);
        }
Example #2
0
 public abstract void UpdateFeatureGroupLang(FeatureGroupLangInfo FeatureGroupLang);
Example #3
0
 public abstract void NewFeatureGroupLang(FeatureGroupLangInfo FeatureGroupLang);