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.

23 wiersze
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.