Beispiel #1
0
 public StateService(IVideoRoomService videoRoomService, IStateRepositoryRavenDB stateRepositoryRaven, IVisitService visitService, IConversationService conversationService)
 {
     //_stateRepository = stateRepository;
     _videoRoomService     = videoRoomService;
     _stateRepositoryRaven = stateRepositoryRaven;
     _visitService         = visitService;
     _conversationService  = conversationService;
     _tokBox = new TokBox();
 }
        public StateService(IVideoRoomService videoRoomService, IStateRepositoryRavenDB stateRepositoryRaven, IVisitService visitService, IConversationService conversationService)
        {
            //_stateRepository = stateRepository;
            _videoRoomService = videoRoomService;
            _stateRepositoryRaven = stateRepositoryRaven;
            _visitService = visitService;
            _conversationService = conversationService;
            _tokBox = new TokBox();

        }
 public SearchService(IProfileRepositoryRavenDB profileRepositoryRaven, IStateRepositoryRavenDB stateRepositoryRaven, IProfileService profileService)
 {
     _profileRepositoryRaven = profileRepositoryRaven;
     _stateRepositoryRaven   = stateRepositoryRaven;
     _profileService         = profileService;
 }