using CaritasPWA.Shared.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace CaritasPWA.Shared.Services { public interface ILFBicycleRest { Task> GetColors(); List GetBicycleTypes(); List GetBrands(); } }