You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 line
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.