PWA Fundvelo der Caritas.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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