Beispiel #1
0
        public IActionResult GetShoesByBrandId(int id)
        {
            var shoesByBrand = _brandService.GetShoesByBrandId(id);

            return(Ok(shoesByBrand));
        }