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 GetColors() { //return Defaults.ColorItems.ToList(); return new List(); } public List GetBicycleTypes() { return Defaults.BycicleTypes.ToList(); //return new List(); } } }