Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Insurer.cs 579B

123456789101112131415161718
  1. namespace Diligent.WebAPI.Data.Entities;
  2. public class Insurer : Base
  3. {
  4. [Required]
  5. public string FirstName { get; set; }
  6. public string LastName { get; set; }
  7. public DateTime DateOfBirth { get; set; }
  8. public string PhoneNumber { get; set; }
  9. public string City { get; set; }
  10. public string Country { get; set; }
  11. public string PostalCode { get; set; }
  12. public string Address { get; set; }
  13. public string Email { get; set; }
  14. public long InsuranceCompanyId { get; set; }
  15. public virtual InsuranceCompany InsuranceCompany { get; set; }
  16. }