Esempio n. 1
0
        public IActionResult CarsByMake(string make)
        {
            var cars = _services.CarByMake(make);

            return(this.View(cars));
        }