async Task <ICollection <Entities.Bike.Bike> > IBikeApplicationService.GetAllBikesAsync()
        {
            var bikes = await _bikeRepository.GetAllAsync();

            return(bikes);
        }