示例#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;
 }