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

23 řádky
626B

  1. namespace Campaign_Tracker.Server.LegacyData.Models;
  2. /// <summary>
  3. /// Read-only domain projection of the legacy <c>Contacts</c> table.
  4. /// Join keys: <c>ID</c> (INTEGER, NOT NULL), <c>JURISCODE</c> (VARCHAR).
  5. /// </summary>
  6. public sealed record LegacyContact(
  7. int Id,
  8. string JurisCode,
  9. string? ContactName,
  10. string? Title,
  11. string? Email,
  12. string? Phone1,
  13. string? Phone2,
  14. string? MailingAddress,
  15. string? MailingAddress2,
  16. string? MailingAddress3,
  17. string? BusinessAddress,
  18. string? BusinessAddress2,
  19. string? BusinessAddress3,
  20. string? TownshipName,
  21. string? TownshipNum);

Powered by TurnKey Linux.