コード例 #1
0
ファイル: CMSPageManager.cs プロジェクト: yalhami/eXpresso
        public static void Delete(int ID)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            objCaller.Delete(ID);
        }
コード例 #2
0
ファイル: CMSPageManager.cs プロジェクト: yalhami/eXpresso
        public static IList<CMSPage> GetAll()
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            return objCaller.GetAll();
        }
コード例 #3
0
ファイル: CMSPageManager.cs プロジェクト: yalhami/eXpresso
        public static void Update(CMSPage obj)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            objCaller.Update(obj);
        }
コード例 #4
0
ファイル: CMSPageManager.cs プロジェクト: yalhami/eXpresso
        public static CMSPage GetByID(int ID)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            return objCaller.GetByID(ID);
        }
コード例 #5
0
ファイル: CMSPageManager.cs プロジェクト: yalhami/eXpresso
        public static int Add(CMSPage obj)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            return objCaller.Add(obj);
        }