示例#1
0
 public ContactService(IContactListRepo contactListRepo,
                       IContactRepo contactRepo,
                       IArloRegistrationSearchRepo registrationSearch,
                       ILogService logService,
                       IRedisEntityCache entityCache) : base(entityCache)
 {
     _contactListRepo    = contactListRepo;
     _contactRepo        = contactRepo;
     _registrationSearch = registrationSearch;
     _logService         = logService;
 }
示例#2
0
        public SessionService(IContactService contactService,
                              IEventService _eventService,
                              ICustomFieldsRepo customFieldsRepo,
                              IEventSessionRepo eventSessionRepo,
                              IVenueRepo venueRepo,
                              IRoomRepo roomRepo,
                              ILogService logService,
                              ITimeService timeService,
                              IRedisEntityCache cache) : base(cache)
        {
            _contactService    = contactService;
            this._eventService = _eventService;
            _customFieldsRepo  = customFieldsRepo;

            _eventSessionRepo = eventSessionRepo;
            _venueRepo        = venueRepo;
            _roomRepo         = roomRepo;
            _logService       = logService;
            _timeService      = timeService;
        }
示例#3
0
 public RedisMemoryCache(IRedisEntityCache redisCache)
 {
     _redisCache = redisCache;
 }
示例#4
0
 public DocumentRepo(IDocumentEntityCache documentCache, IRedisEntityCache redisCache)
 {
     _documentCache = documentCache;
     _redisCache    = redisCache;
 }
示例#5
0
 public EventService(IEventListRepo eventsRepo, IArloEventRepo arloEventRepo, IRedisEntityCache redisCache) : base(redisCache)
 {
     _eventsRepo    = eventsRepo;
     _arloEventRepo = arloEventRepo;
 }
示例#6
0
 public DocumentRepo(IDocumentEntityCache documentCache, IRedisEntityCache redisCache)
 {
     _documentCache = documentCache;
     _redisCache = redisCache;
 }
示例#7
0
 public CachingService(IRedisEntityCache entityCache)
 {
     _entityCache = entityCache;
 }
示例#8
0
 public ArloSessionRegistrationService(ISessionService sessionService,
                                       ISystemService systemService, IGenericWebRepo <ArloEventSessionRegistration> regoRepo, ILogService logService, IRedisEntityCache entityCache) : base(entityCache)
 {
     _sessionService = sessionService;
     _systemService  = systemService;
     _regoRepo       = regoRepo;
     _logService     = logService;
 }