Exemplo n.º 1
0
        private bool BikeExistsbyName(string fullname)
        {
            var bike = _bicycleRepository.GetByName(fullname);

            return(bike != null);
        }