PWA Fundvelo der Caritas.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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