PWA Fundvelo der Caritas.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

ILFBicycleRest.cs 337B

1234567891011121314
  1. using cwebplusApp.Shared.Models;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. namespace cwebplusApp.Shared.Services {
  5. public interface ILFBicycleRest {
  6. Task<List<ColorItem>> GetColors();
  7. Task<List<BicycleType>> GetBicycleTypes();
  8. Task<List<Brand>> GetBrands();
  9. }
  10. }