oop_II-6/EHEC_Server/EHEC_Server/Doctor.cs

51 lines
1.2 KiB
C#
Raw Normal View History

2018-06-18 19:34:20 +02:00
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
2018-06-18 19:34:20 +02:00
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
2018-06-18 19:34:20 +02:00
// </auto-generated>
//------------------------------------------------------------------------------
2018-06-18 19:34:20 +02:00
namespace EHEC_Server
{
using System;
2018-06-18 19:34:20 +02:00
using System.Collections.Generic;
public partial class Doctor
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Doctor()
2018-06-18 19:34:20 +02:00
{
this.Exams = new HashSet<Exam>();
2018-06-18 19:34:20 +02:00
}
public int DoctorId { get; set; }
public string DoctorUid { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string DoctorOrigin { get; set; }
public string Region { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Exam> Exams { get; set; }
}
2018-06-18 19:34:20 +02:00
}