public notificationController(
     IServAssReqRepository servAssReqRepository,
     INotificationRepository notificationRepository)
 {
     this.servAssReqRepository   = servAssReqRepository;
     this.notificationRepository = notificationRepository;
     nh = new notificationHandler(this.servAssReqRepository, this.notificationRepository);
 }
Example #2
0
 public notificationHub(IServiceRepository serviceRepository, INotificationRepository notificationRepository, IAddServRepository addServRepository, IServAssReqRepository servAssReqRepository, IStatOfVehicleRepository statOfVehicleRepository)
 {
     this.serviceRepository       = serviceRepository;
     this.notificationRepository  = notificationRepository;
     this.statOfVehicleRepository = statOfVehicleRepository;
     this.addServRepository       = addServRepository;
     this.servAssReqRepository    = servAssReqRepository;
 }
 public notificationHandler(IServAssReqRepository servAssReqRepository, INotificationRepository notificationRepository)
 {
     this.servAssReqRepository   = servAssReqRepository;
     this.notificationRepository = notificationRepository;
 }