예제 #1
0
 public PredictionService()
 {
     repoCow             = new CowRepository();
     notificationService = new NotificationService();
     predictionRepo      = new PredictionRepository();
 }
예제 #2
0
 public DoctorService(DoctorRepository doctorRepository, NotificationService notificationService)
 {
     _doctorRepository    = doctorRepository;
     _notificationService = notificationService;
 }