Exemplo n.º 1
0
        public IActionResult GetVehicle(int garageId, string regNo)
        {
            var vehicle = _garageRepository.GetVehicle(garageId, regNo);

            return(vehicle != null ? (IActionResult)Ok(vehicle) : NotFound());
        }