Esempio n. 1
0
        // GET: api/Match/5
        public PlayerScore Get(int id)
        {
            var model = iplayerscore.GetById(id);

            return(model);
        }
Esempio n. 2
0
        // GET: api/PlayerAPI/5
        public Player Get(int id)
        {
            var model = iplayer.GetById(id);

            return(model);
        }
        // GET: User/Edit/5
        public ActionResult Edit(int id)
        {
            var model = interfaceobj.GetById(id);

            return(View(model));
        }
        // GET: api/Match/5
        public MatchPlayer Get(int id)
        {
            var model = imatchpalyer.GetById(id);

            return(model);
        }
Esempio n. 5
0
        // GET: api/Match/5
        public Match Get(int id)
        {
            var model = imatch.GetById(id);

            return(model);
        }
        // GET: api/UserAPI/5
        public User Get(int id)
        {
            var model = interfaceobj.GetById(id);

            return(model);
        }