Beispiel #1
0
        public ProductItem GetItemByNameFromInventory([FromRoute] string storeId, [FromRoute] string productName)
        {
            Guid guid   = Guid.Parse(storeId);
            var  result = _ProductItemRepo.GetItemByNameFromInventory(guid, productName);

            return(result);
        }