Esempio n. 1
0
 /// <summary>Initializes a new instance of the <see cref="T:DonorSystem.DAO.DonorsDAO" /> class which controls the Donors table in the database.</summary>
 public DonorsDAO()
 {
     context = new DonorDBContext();
 }
Esempio n. 2
0
 /// <summary>Initializes a new instance of the <see cref="T:DonorSystem.DAO.PatientsDAO" /> class which controls the Patients table in the database.</summary>
 public PatientsDAO()
 {
     context = new DonorDBContext();
 }
Esempio n. 3
0
 /// <summary>Initializes a new instance of the <see cref="T:DonorSystem.DAO.WebsitesDAO" /> class which controls the Websites table in the database.</summary>
 public WebsitesDAO()
 {
     context = new DonorDBContext();
 }
Esempio n. 4
0
 public HomeDAO()
 {
     context = new DonorDBContext();
 }