PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 123456789101112131415161718192021 |
- using cwebplusApp.Shared.Models;
- using Microsoft.Extensions.Configuration;
- using System.Collections.Generic;
- using System.Threading.Tasks;
-
- namespace cwebplusApp.Shared.Services {
- public interface IBicycleRestService {
-
- void Initialize(IConfiguration configuration);
-
- Task<List<ColorItem>> GetColors();
-
- Task<List<BicycleType>> GetBicycleTypes();
-
- Task<List<Brand>> GetBrands();
-
- Task<ReportResponse> SendFoundReport(Report report);
-
- Task<ReportResponse> SendMissingReport(Report report);
- }
- }
|