Example #1
0
        // GET: api/Igr/5
        public Igr Get(int id)
        {
            IgrRepository pp = new IgrRepository();
            Igr           p  = pp.getIgr(id);

            return(p);
        }
Example #2
0
        public ArrayList GetIgr()
        {
            IgrRepository pp = new IgrRepository();

            return(pp.GetIgrs());
        }