Пример #1
0
 /// <inheritdoc />
 public IList <Scooter> GetScooters()
 {
     return(_scooterRepository.GetAll());
 }
Пример #2
0
 public IEnumerable <Scooter> GetAllScooters()
 {
     return(_scooterRepository.GetAll());
 }
Пример #3
0
 public Task <IEnumerable <ScooterDomainModel> > GetAll()
 {
     return(_repository.GetAll());
 }