PWA Fundvelo der Caritas.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }