PWA Fundvelo der Caritas.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ILFBicycleRest.cs 568B

123456789101112131415161718192021
  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 ILFBicycleRest {
  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> SendMissingReport(Report report);
  13. }
  14. }