Пример #1
0
        public IActionResult Index()
        {
            ViewBag.Title = "Vouchers App";
            //ViewBag.MyProp = "Alex";
            //ViewBag.MaxRows = 10;
            var model = rep.GetAllVouchers();

            return(View(model));
        }
Пример #2
0
 public IEnumerable <Voucher> UsingRepository()
 {
     return(rep.GetAllVouchers());
 }