public MedicinesController(Func <ehealthContext> context)
 {
     _context = new ehealthContext();
 }
 public PatientsController(ehealthContext context)
 {
     _context = context;
 }
Пример #3
0
 public PrescriptionsController(ehealthContext context)
 {
     _context = context;
 }
 public HomeController(Func <ehealthContext> context)
 {
     _context = new ehealthContext();
 }
 public PharmaciesController(Func <ehealthContext> context)
 {
     _context = new ehealthContext();
 }
Пример #6
0
 public HospitalsController(Func <ehealthContext> context)
 {
     _context = new ehealthContext();
 }