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