PWA Fundvelo der Caritas.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

IBicycleRestService.cs 922B

12345678910111213141516171819202122232425262728293031
  1. using cwebplusApp.Shared.Models;
  2. using Microsoft.Extensions.Configuration;
  3. using System.Collections.Generic;
  4. using System.Threading.Tasks;
  5. namespace cwebplusApp.Shared.Services {
  6. public interface IBicycleRestService {
  7. void Initialize(IConfiguration configuration);
  8. Task<List<ColorItem>> GetColors();
  9. Task<List<BicycleType>> GetBicycleTypes();
  10. Task<List<Brand>> GetBrands();
  11. Task<ReportResponse> SendFoundReport(Report report);
  12. Task<ReportResponse> SendFoundReport(FoundReportRepositoryItem reportRepositoryItem);
  13. Task<ReportResponse> SendMissingReport(Report report);
  14. Task<ReportResponse> SendMissingReport(MissingReportRepositoryItem reportRepositoryItem);
  15. Task<int> TrySendPendingReports();
  16. Task<int> TrySendFoundPendingReports();
  17. Task<int> TrySendMissingPendingReports();
  18. }
  19. }