コード例 #1
0
        public ActionResult <Dictionary <string, InventoryItems> > GetInvertoryItems()
        {
            var invetoryItems = _services.GetInvertoryItems();

            if (invetoryItems == null)
            {
                return(NotFound());
            }
            return(Ok(invetoryItems));
        }