reworked project structure, removed entityframework, add mysqlconnector
This commit is contained in:
10
Person.cs
10
Person.cs
@@ -8,9 +8,17 @@ namespace it_projekt
|
||||
{
|
||||
class Person
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Id { get; set; }
|
||||
public string Lastname { get; set; }
|
||||
public string Firstname { get; set; }
|
||||
public DateTime CreationDate { get; set; }
|
||||
|
||||
public Person(string Id, string Lastname, string Firstname, DateTime CreationDate)
|
||||
{
|
||||
this.Id = Id;
|
||||
this.Lastname = Lastname;
|
||||
this.Firstname = Firstname;
|
||||
this.CreationDate = CreationDate;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user