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

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

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

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

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

            return objCaller.Add(obj);
        }