Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

24 Zeilen
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.