示例#1
0
 public CommentBusiness(MongoI.ICommentRepository commentRepoM, MongoI.IStatusPostRepository statusPostRepository,
                        MongoI.INotificationRepository NotifyRepository, MongoI.ICommentNotifyRepository commentNotifyRepository, CurrentProcess process) : base(process)
 {
     _commentRepositoryM      = commentRepoM;
     _statusPostRepository    = statusPostRepository;
     _notifyRepository        = NotifyRepository;
     _commentNotifyRepository = commentNotifyRepository;
 }
示例#2
0
 public FeedLikeBusiness(MongoI.IFeedLikeRepository feedlikeRepoM,
                         MongoI.IPostBroadcastPersonRepository postBroadcastPersonRepository,
                         MongoI.IStatusPostRepository statusPostRepository,
                         MongoI.IJobPostRepository jobPostRepository, MongoI.INotificationRepository NotifyRepository, CurrentProcess process) : base(process)
 {
     _feedLikeRepositoryM           = feedlikeRepoM;
     _postBroadcastPersonRepository = postBroadcastPersonRepository;
     _statusPostRepository          = statusPostRepository;
     _jobPostRepository             = jobPostRepository;
     _notifyRepository = NotifyRepository;
 }
示例#3
0
 public NotificationBusiness(MongoI.INotificationRepository commentnotifyRepoM, CurrentProcess process) : base(process)
 {
     m_CommentNotifyRepositoryM = commentnotifyRepoM;
 }