public void GetBikeByIdTest()
        {
            Bike bike = bikeService.GetBikeById(1);

            Assert.IsTrue(bike is Bike);
        }