Example #1
0
 public ClinicDbService(PrescriptionDbContext context)
 {
     _context = context;
 }
Example #2
0
 public DoctorController(PrescriptionDbContext context)
 {
     _context = context;
 }
Example #3
0
 public PatientsController(PrescriptionDbContext context)
 {
     _context = context;
 }