PWA Fundvelo der Caritas.
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
| 1234567891011121314 |
- 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();
- }
- }
|