コード例 #1
0
ファイル: ShelfController.cs プロジェクト: hoang7020/RFIM_WEB
        public IActionResult ActiveShelf(string id)
        {
            if (id == null)
            {
                return(NotFound());
            }
            var shelf = ctx.GetShelf(id);

            if (shelf == null)
            {
                return(NotFound());
            }
            return(PartialView("ActiveShelf", shelf));
        }