Beispiel #1
0
 //
 // GET: /Asset/
 public ActionResult Index()
 {
     IAssetRepository repository = new EFAssetRepository(User.Identity.Name);
     return View(repository.GetList());
 }