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.

LFBicycleRest.cs 662B

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