| 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>();
- }
-
-
- }
- }
|