您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
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.