コード例 #1
0
        public static void Delete(int ID)
        {
            CareerPostsDataMapper objCaller = new CareerPostsDataMapper();

            objCaller.Delete(ID);
        }
コード例 #2
0
        public static IList<CareerPosts> GetAll()
        {
            CareerPostsDataMapper objCaller = new CareerPostsDataMapper();

            return objCaller.GetAll();
        }
コード例 #3
0
        public static void Update(CareerPosts obj)
        {
            CareerPostsDataMapper objCaller = new CareerPostsDataMapper();

            objCaller.Update(obj);
        }
コード例 #4
0
        public static CareerPosts GetByID(int ID)
        {
            CareerPostsDataMapper objCaller = new CareerPostsDataMapper();

            return objCaller.GetByID(ID);
        }
コード例 #5
0
        public static int Add(CareerPosts obj)
        {
            CareerPostsDataMapper objCaller = new CareerPostsDataMapper();

            return objCaller.Add(obj);
        }