Example #1
0
        //
        // GET: /Replays/List
        public JsonResult GetByPlayerUser(int playerId, int startIndex, int pageSize)
        {
            var pagingInfo = new PagingInfo(startIndex, pageSize);

            var dtos = _replayService.GetReplaysByPlayerUser(playerId, pagingInfo);

            return(Json(dtos, JsonRequestBehavior.AllowGet));
        }