Exemplo n.º 1
0
 public PrescriptionsDataAccess(ILogger <PrescriptionsDataAccess> log, IPatientsDataAccess patientsDataAccess)
 {
     _log = log;
     _patientsDataAccess = patientsDataAccess;
 }
 public PatientsController(ILogger <PatientsController> log, IPatientsDataAccess patientsDataAccess, IDistributedCache distributedCache)
 {
     _log = log;
     _patientsDataAccess = patientsDataAccess;
     _distributedCache   = distributedCache;
 }