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

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

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

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

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

            return objCaller.Add(obj);
        }