PWA Fundvelo der Caritas.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

LFBicycleRest.cs 671B

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