remove an unused file

This commit is contained in:
Andreas Zweili 2018-08-04 11:51:35 +02:00
parent 61ee07375e
commit 249614e8e4
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
using System.Runtime.Serialization;
using System.ComponentModel.DataAnnotations.Schema;
namespace Server.Models
{
[Table("Patients")]
[DataContract]
public class Patient : Person
{
public Patient() { }
public Patient(string firstName, string lastName, Gender gender, Salutation salutation,
string streetName, string streetNumber, City city)
{
this.FirstName = firstName;
this.LastName = lastName;
this.Gender = gender;
this.Salutation = salutation;
this.StreetName = streetName;
this.StreetNumber = streetNumber;
this.City = city;
}
}
}