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.

ILFBicycleRest.cs 286B

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