Advertisement
Guest User

smth...

a guest
Apr 25th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.65 KB | None | 0 0
  1.     public class Beneficiary : EntityBase {
  2.  
  3.         public Beneficiary() {
  4.         }
  5.  
  6.         public string EmailAddress { get; set; }
  7.         public string AlternateEmailAddress { get; set; }
  8.         public string Passport { get; set; }
  9.         public string DrivingLicence { get; set; }
  10.         public string SocialSecurityNumber { get; set; }
  11.         public string EmailDomain { get; set; }
  12.         public string FirstName { get; set; }
  13.         public string HomePhoneNumber { get; set; }
  14.         public string ImageUrl { get; set; }
  15.         public string LastName { get; set; }
  16.         public string MiddleName { get; set; }
  17.         public string MobilePhoneNumber { get; set; }
  18.         public string NameSound { get; set; }
  19.         public string PhoneNumber { get; set; }
  20.         public string Skype { get; set; }
  21.         public string Suffix { get; set; }
  22.         public string Title { get; set; }
  23.         public string CustomField { get; set; }
  24.         public string Comment { get; set; }
  25.         public string ProspectComment { get; set; }
  26.         public string ProjectRole { get; set; }
  27.         public string Name { get; set; }
  28.         public string TelephoneNumber { get; set; }
  29.         public string FaxNumber { get; set; }
  30.         public string CompanyNumber { get; set; }
  31.         public string Vatnumber { get; set; }
  32.         public string Siccode { get; set; }
  33.         public string CompanyEmail { get; set; }
  34.         public string EmployeesRange { get; set; }
  35.         public string Symbol { get; set; }
  36.         public string Url { get; set; }
  37.         public string AccountNumber { get; set; }
  38.         public string Revenue { get; set; }
  39.         public string ProjectShortDescription { get; set; }
  40.         public string ProjectDescription { get; set; }
  41.         public string ProjectLocationDescription { get; set; }
  42.         public decimal Amount { get; set; }
  43.         public short? EmailContactPreference { get; set; }
  44.         public Guid? IdentityUID { get; set; }
  45.         public Guid? ActiveDirectory { get; set; }
  46.         public byte[] EmailHash { get; set; }
  47.         public bool? EmailOptOut { get; set; }
  48.         public bool Hidden { get; set; }
  49.         public bool NameStyle { get; set; }
  50.         public bool Validated { get; set; }
  51.         public bool Deleted { get; set; }
  52.         public long? ProjectCountryId { get; set; }
  53.         public long? IndustryValueId { get; set; }
  54.         public long? NextActionValueId { get; set; }
  55.         public long? LeadRatingValueId { get; set; }
  56.         public long? LeadSourceValueId { get; set; }
  57.         public long? LeadStatusValueId { get; set; }
  58.         public long? OwnershipValueId { get; set; }
  59.         public long? AccountTypeValueId { get; set; }
  60.         public long? BankAccountId { get; set; }
  61.         public long? AddressId { get; set; }
  62.         public long? CurrencyId { get; set; }
  63.         public DateTime? DateOfBirth { get; set; }
  64.         public DateTime? NextActionDate { get; set; }
  65.         public DateTime? LastActivitity { get; set; }
  66.  
  67.         public virtual Value LeadRatingValue { get; set; }
  68.         public virtual Value LeadSourceValue { get; set; }
  69.         public virtual Value LeadStatusValue { get; set; }
  70.         public virtual Value NextActionValue { get; set; }
  71.         public virtual Value AccountTypeValue { get; set; }
  72.         public virtual Value IndustryValue { get; set; }
  73.         public virtual Value OwnershipValue { get; set; }
  74.         public virtual Country ProjectCountry { get; set; }
  75.         public virtual BankAccount BankAccount { get; set; }
  76.         public virtual Address Address { get; set; }
  77.         public virtual Currency Currency { get; set; }
  78.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement