Esempio n. 1
0
        // GET: Asset
        public ActionResult List(string type = "Stock")
        {
            ViewBag.AssetType = type;
            var list = _assetRepository.GetAssetListByType(type);

            return(View(list));
        }