示例#1
0
        public static bool Delete(Int32 storeSettingId)
        {
            StoreSetting storeSetting = new StoreSetting();

            if (storeSetting.Load(storeSettingId))
            {
                return(storeSetting.Delete());
            }
            return(false);
        }
示例#2
0
 public static bool Delete(StoreSetting storeSetting)
 {
     return(storeSetting.Delete());
 }