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

36 lines
838 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ServiceModel;
namespace EHEC_Server.DatabaseAccess
{
public class PatientAccess
{
public Patient CreatePatient(Patient patient)
{
try
{
using (EHEC_DBEntities ctx = new EHEC_DBEntities())
{
ctx.Patient.Add(patient);
ctx.SaveChanges();
}
return patient;
}
catch (Exception)
{
return new Patient();
}
}
public List<Patient> GetAllPatients()
{
using (EHEC_DBEntities ctx = new EHEC_DBEntities())
{
return ctx.Patient.ToList();
}
}
}
}