/// <inheritdoc /> public IList <Scooter> GetScooters() { return(_scooterRepository.GetAll()); }
public IEnumerable <Scooter> GetAllScooters() { return(_scooterRepository.GetAll()); }
public Task <IEnumerable <ScooterDomainModel> > GetAll() { return(_repository.GetAll()); }