예제 #1
0
        public IActionResult GetByYear(int year)
        {
            var cars = _carsService.GetByYear(year);

            if (cars.Count == 0)
            {
                return(NoContent());
            }

            return(Ok(cars));
        }