Exemplo n.º 1
0
 public IPagedList <Coacher> GetAllList(CoacherQuery query)
 {
     return(_coacherRep.GetAllList().AsPagedList(query));
 }
Exemplo n.º 2
0
        public ActionResult Index(CoacherQuery query)
        {
            var items = _coacherSrv.GetAllList(query);

            return(View(items));
        }