Exemplo n.º 1
0
        // GET: Sins
        public ActionResult Index()
        {
            int page = 1, pageSize = 100;
            var sins = _indulgeMeService.GetSinsByDonationAmount(page, pageSize);

            return(View(sins));
        }