oop_II-6/EHEC_Server/EHEC_Server/DatabaseAccess/Doctor.cs

38 lines
979 B
C#
Raw Normal View History

2018-06-22 16:29:27 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ServiceModel;
2018-06-24 17:36:08 +02:00
namespace EHEC_Server
2018-06-22 16:29:27 +02:00
{
public partial class Doctor
2018-06-22 16:29:27 +02:00
{
public Doctor CreateDoctor(Doctor doctor)
2018-06-22 16:29:27 +02:00
{
try
{
using (EHEC_DBEntities ctx = new EHEC_DBEntities())
{
doctor.DoctorUid = Guid.NewGuid().ToString();
ctx.Doctors.Add(doctor);
2018-06-22 16:29:27 +02:00
ctx.SaveChanges();
}
return doctor;
2018-06-22 16:29:27 +02:00
}
2018-08-19 17:34:30 +02:00
catch (Exception e)
2018-06-22 16:29:27 +02:00
{
2018-08-19 17:34:30 +02:00
System.Diagnostics.Trace.WriteLine(" --e-- Error in ServerCreateDoctor: " + e);
return new Doctor();
2018-06-22 16:29:27 +02:00
}
}
public List<Doctor> GetAllDoctors()
{
using (EHEC_DBEntities ctx = new EHEC_DBEntities())
{
return ctx.Doctors.ToList();
2018-06-22 16:29:27 +02:00
}
}
}
}