Beispiel #1
0
 public PersonBusiness(MongoI.IPersonRepository personRepoM,
                       NeoI.IPersonRepository personRepoN,
                       SqlI.IPersonRepository personRepositoryS, CurrentProcess process) : base(process)
 {
     m_personRepositoryM = personRepoM;
     m_personRepositoryN = personRepoN;
     m_personRepositoryS = personRepositoryS;
 }
Beispiel #2
0
 public FeedSmart(MongoI.IPostBroadcastPersonRepository postBroadcastPersonRepository
                  , NeoI.IPersonRepository personRepositoryN
                  , NeoI.IPageRepository pageRepositoryN
                  , NeoI.ICommunityRepository communityRepositoryN
                  , MongoI.IPersonRepository personRepositoryM
                  , MongoI.IStatusPostRepository statusPostRepository
                  , MongoI.IJobPostRepository jobPostRepository
                  , MongoI.ILastPostBroadCastRepository lastPostBroadCastRepository, CurrentProcess process) : base(process)
 {
     _PostbroadcastPersonRepositoryM = postBroadcastPersonRepository;
     _personRepositoryN           = personRepositoryN;
     _pageRepositoryN             = pageRepositoryN;
     _communityRepositoryN        = communityRepositoryN;
     _personRepositoryM           = personRepositoryM;
     _statusPostRepository        = statusPostRepository;
     _jobPostRepository           = jobPostRepository;
     _lastPostBroadCastRepository = lastPostBroadCastRepository;
 }