PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. using CaritasPWA.Shared.Models;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. namespace CaritasPWA.Shared.Services {
  5. public interface ILFBicycleRest {
  6. Task<List<ColorItem>> GetColors();
  7. Task<List<BicycleType>> GetBicycleTypes();
  8. Task<List<Brand>> GetBrands();
  9. }
  10. }