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. }