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

37 lines
881 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
}
catch (Exception)
{
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
}
}
}
}