public DoctorsController()
 {
     _context = new MongoDBContext();
     _specs   = new PopulateSpecilizations();
     _degrees = new PopulateDoctorDegrees();
     _genders = new PopulateGenders();
     _table   = "Doctors";
 }
Esempio n. 2
0
 public PatientsController()
 {
     _context = new MongoDBContext();
     _spec    = new PopulateSpecilizations();
     _table   = "Patients";
 }