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

15 řádky
430B

  1. namespace Campaign_Tracker.Server.ElectionCycles;
  2. public interface IElectionCycleJobRepository
  3. {
  4. Task<IReadOnlyList<ElectionCycleJobAssignment>> GetAllAsync(
  5. CancellationToken cancellationToken = default);
  6. Task<ElectionCycleJobSaveResult> CreateAsync(
  7. string jCode,
  8. string cycleId,
  9. string cycleName,
  10. string actorIdentity,
  11. CancellationToken cancellationToken = default);
  12. }

Powered by TurnKey Linux.