Example #1
0
        public static void Delete(int ID)
        {
            CareerPostsDataMapper objCaller = new CareerPostsDataMapper();

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

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

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

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

            return objCaller.Add(obj);
        }