- using cwebplusApp.Shared.Models;
- using System.Collections.Generic;
- using System.Threading.Tasks;
-
- namespace cwebplusApp.Shared.Services {
- public interface ILFBicycleRest {
-
- Task<List<ColorItem>> GetColors();
-
- Task<List<BicycleType>> GetBicycleTypes();
-
- Task<List<Brand>> GetBrands();
- }
- }
|