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

24 řádky
739B

  1. namespace Campaign_Tracker.Server.Municipalities;
  2. public interface IMunicipalityProfileRepository
  3. {
  4. Task<MunicipalityProfileSaveResult> CreateAsync(
  5. string jCode,
  6. string? displayName,
  7. string actorIdentity,
  8. CancellationToken cancellationToken = default);
  9. Task<MunicipalityProfileSaveResult> UpdateAsync(
  10. string profileId,
  11. string? displayName,
  12. string actorIdentity,
  13. CancellationToken cancellationToken = default);
  14. Task<MunicipalityProfileView?> GetByIdAsync(
  15. string profileId,
  16. CancellationToken cancellationToken = default);
  17. Task<IReadOnlyList<MunicipalityProfileView>> GetAllAsync(
  18. CancellationToken cancellationToken = default);
  19. }

Powered by TurnKey Linux.