Esempio n. 1
0
 public FeedController(CurrentProcess process, IFeedSmart feedSmart, IPostBroadcastPersonRepository postBroadcastPersonBusiness) : base(process)
 {
     m_FeedSmart = feedSmart;
     _postBroadcastPersonBusiness = postBroadcastPersonBusiness;
 }
Esempio n. 2
0
 public StatusPostController(CurrentProcess process, IFeedSmart feedSmart, IStatusPostBusiness statusPostBusiness) : base(process)
 {
     m_FeedSmart          = feedSmart;
     m_statusPostBusiness = statusPostBusiness;
 }
Esempio n. 3
0
 public JobPostController(CurrentProcess process, IJobPostBusiness jobpostBusiness, IFeedSmart feedSmart) : base(process)
 {
     m_JobPostBusiness = jobpostBusiness;
     m_FeedSmart       = feedSmart;
 }
Esempio n. 4
0
 public SmartCenterController(CurrentProcess process, IFeedSmart feedSmart, NotificationHub notificationHub, IHubContext <NotificationHub> hubContext) : base(process)
 {
     m_FeedSmart       = feedSmart;
     m_NotificationHub = notificationHub;
     _hubContext       = hubContext;
 }