Correct the doctor ID

This commit is contained in:
Andreas Zweili 2018-06-23 11:10:22 +02:00
parent b7fd5753a2
commit f5795dc45d
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace Server.Models
private int _DoctorID;
[DataMember]
public int DoctorId { get => _DoctorId; set => _DoctorId = value; }
public int DoctorID { get => _DoctorID; set => _DoctorID = value; }
public Doctor() { }
public Doctor(string firstName, string lastName, Gender gender, Salutation salutation,