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