Exemplo n.º 1
0
        public IActionResult Index()
        {
            var bikeList = new BikeListViewModel();

            bikeList.BikeList = _bikeService.GetAllBike();

            return(View(bikeList));
        }