Ejemplo n.º 1
0
 public SuperintendentMedicineService()
 {
     rejectionRepository = new RejectionFileSystem();
     waitingRepostitory  = new WaitingMedicineFileSystem();
     approvedRepository  = new ApprovedMedicineFileSystem();
 }
 public PhysitianMedicineService()
 {
     this.approvedMedicineRepository = new ApprovedMedicineFileSystem();
     this.waitingMedicineRepository  = new WaitingMedicineFileSystem();
     this.rejectionRepository        = new RejectionFileSystem();
 }