Esempio n. 1
0
        public static void Delete(int ID)
        {
            PollDataMapper objCaller = new PollDataMapper();

            objCaller.Delete(ID);
        }
Esempio n. 2
0
        public static IList<Poll> GetAll()
        {
            PollDataMapper objCaller = new PollDataMapper();

            return objCaller.GetAll();
        }
Esempio n. 3
0
        public static void Update(Poll obj)
        {
            PollDataMapper objCaller = new PollDataMapper();

            objCaller.Update(obj);
        }
Esempio n. 4
0
        public static Poll GetByID(int ID)
        {
            PollDataMapper objCaller = new PollDataMapper();

            return objCaller.GetByID(ID);
        }
Esempio n. 5
0
        public static int Add(Poll obj)
        {
            PollDataMapper objCaller = new PollDataMapper();

            return objCaller.Add(obj);
        }