public MedicamentRepository(EgzDbContext context) { this.context = context; }
public PatientRepository(EgzDbContext context) { this.context = context; }
public PatientService(IPatientRepository patientRepository, EgzDbContext context) { this.patientRepository = patientRepository; this.context = context; }