Added some migration, address object

This commit is contained in:
2021-03-07 08:39:52 +01:00
parent bd20b3b9d3
commit f7dc96cd5f
7 changed files with 247 additions and 0 deletions

18
DataDomain/Address.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 Nation { get; set; }
}
}

View File

@ -13,5 +13,8 @@ namespace DataDomain
public string LastName { get; set; }
public string NickName { get; set; }
public DateTime? Born { get; set; }
public string Comments { get; set; }
public int HomeAddress { get; set; }
public int InvoiceAddress { get; set; }
}
}