コード例 #1
0
        /// <summary>
        /// Action to seve the inventory list page
        /// </summary>
        /// <returns></returns>
        public async Task <IActionResult> Index()
        {
            var model = new InventoryViewModel
            {
                Filter        = new FilterViewModel(),
                InventoryList = _listingService.GetActiveInventoryList()
            };


            return(View(model));
        }