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

LFBicycleRest.cs 621B

12345678910111213141516171819202122
  1. using CaritasPWA.Shared.Models;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace CaritasPWA.Shared.Services {
  5. // REST interface responsible to submit lost or found reports and get the available masterdata.
  6. public class LFBicycleRest : ILFBicycleRest {
  7. public List<ColorItem> GetColors() {
  8. //return Defaults.ColorItems.ToList();
  9. return new List<ColorItem>();
  10. }
  11. public List<BicycleType> GetBicycleTypes() {
  12. return Defaults.BycicleTypes.ToList();
  13. //return new List<BicycleType>();
  14. }
  15. }
  16. }