// // GET: /Merchant/ public ActionResult Index() { var documentRepository = new DocumentRepository(); var merchants = documentRepository.LoadMany<Merchant>(10, 1); return View(merchants); }