PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 123456789101112131415161718192021222324 |
- using CaritasPWA.Shared.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace CaritasPWA.Shared {
-
- // REST interface responsible to submit lost or found reports and get the available masterdata.
- public class LFBicycleRest : ILFBicycleRest {
-
- public List<ColorItem> GetColors() {
- //return Defaults.ColorItems.ToList();
- return new List<ColorItem>();
- }
-
- public List<BicycleType> GetBicycleTypes() {
- return Defaults.BycicleTypes.ToList();
- //return new List<BicycleType>();
- }
-
-
- }
- }
|