Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

12 wiersze
506B

  1. namespace Campaign_Tracker.Server.ExtensionData;
  2. /// <summary>
  3. /// Supplies all persisted records of one extension record type to the integrity check.
  4. /// Each extension record type (municipality profile, election job, etc.) registers its own
  5. /// implementation so the <see cref="ILegacyLinkIntegrityCheck"/> can scan across all types.
  6. /// </summary>
  7. public interface ILegacyLinkedRecordProvider
  8. {
  9. Task<IReadOnlyList<ILegacyLinkedRecord>> GetAllAsync(CancellationToken cancellationToken = default);
  10. }

Powered by TurnKey Linux.