public StatisticsService(
     ICacheManager cache,
     ISpeakerMeetRepository repository
     )
 {
     _cache      = cache;
     _repository = repository;
 }
 public CommunityService(
     ICacheManager cache,
     ISpeakerMeetRepository repository
     )
 {
     _cache      = cache;
     _repository = repository;
 }
Exemple #3
0
 public ConferenceService(
     ICacheManager cache,
     ISpeakerMeetRepository repository
     )
 {
     _cache      = cache;
     _repository = repository;
 }
 public SpeakerPresentationService(ISpeakerMeetRepository repository)
 {
     _repository = repository;
 }