33 lines
964 B
C#
33 lines
964 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace it_projekt
|
|
{
|
|
public class Person
|
|
{
|
|
public string Id { get; set; }
|
|
public string Lastname { get; set; }
|
|
public string Firstname { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public string Department_short { get; set; }
|
|
public string Department_long { get; set; }
|
|
|
|
public Person()
|
|
{
|
|
|
|
}
|
|
public Person(string Id, string Lastname, string Firstname, DateTime CreationDate, string Department_short, string Department_long)
|
|
{
|
|
this.Id = Id;
|
|
this.Lastname = Lastname;
|
|
this.Firstname = Firstname;
|
|
this.CreationDate = CreationDate;
|
|
this.Department_short = Department_short;
|
|
this.Department_long = Department_long;
|
|
}
|
|
}
|
|
}
|