Added code for Person / Address
This commit is contained in:
@ -9,10 +9,10 @@ namespace DataDomain
|
||||
public class Address
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Gata { get; set; }
|
||||
public string Gata2 { get; set; }
|
||||
public int PostNr { get; set; }
|
||||
public string PostOrt { get; set; }
|
||||
public string Street { get; set; }
|
||||
public string Street2 { get; set; }
|
||||
public int Zipcode { get; set; }
|
||||
public string Destination { get; set; }
|
||||
public string Nation { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user