コード例 #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();
 }
コード例 #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();
 }
コード例 #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();
 }
コード例 #4
0
 public HomeDAO()
 {
     context = new DonorDBContext();
 }