Пример #1
0
        public static void Delete(int ID)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            objCaller.Delete(ID);
        }
Пример #2
0
        public static IList<CMSPage> GetAll()
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            return objCaller.GetAll();
        }
Пример #3
0
        public static void Update(CMSPage obj)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            objCaller.Update(obj);
        }
Пример #4
0
        public static CMSPage GetByID(int ID)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            return objCaller.GetByID(ID);
        }
Пример #5
0
        public static int Add(CMSPage obj)
        {
            CMSPageDataMapper objCaller = new CMSPageDataMapper();

            return objCaller.Add(obj);
        }