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