Added code for Person / Address

This commit is contained in:
2021-03-07 23:39:37 +01:00
parent 00b407f790
commit b4baefd68f
19 changed files with 1094 additions and 26 deletions

View File

@ -12,9 +12,11 @@ namespace DataDomain
public string FirstName { get; set; }
public string LastName { get; set; }
public string NickName { get; set; }
public DateTime? Born { get; set; }
public String Born { get; set; }
public string Comments { get; set; }
public int HomeAddress { get; set; }
public int InvoiceAddress { get; set; }
public int ClearingNo { get; set; }
public long AccountNo { get; set; }
}
}