Beispiel #1
0
 public ServiceBase(AnimalMedDbContext db)
 {
     _db = db;
 }
 public AnimalService(AnimalMedDbContext context, IMedicalRecordsService medicalRecordsService) : base(context)
 {
     _medicalRecordsService = medicalRecordsService;
 }
Beispiel #3
0
 public MedicalRecordsService(AnimalMedDbContext context) : base(context)
 {
 }