public WpfContextManager(ICacheManager cacheManager, IContextFactory contextFactory)
 {
     this.cacheManager = cacheManager.notNull();
     this.contextFactory = contextFactory.notNull();
 }
 public PlaylistController(IPlaylistService service, ICacheManager cacheManager)
 {
     this.service = service.notNull();
     this.sessionCache = cacheManager.notNull();
 }
Example #3
0
 public TerminalTasks(IPlayService playService, IStateService stateService, ICacheManager cacheManager)
 {
     this.cacheManager = cacheManager.notNull();
     this.playService = playService.notNull();
     this.stateService = stateService.notNull();
 }
Example #4
0
 public StateService(ICacheManager cacheManager, IDaoFactory daoFactory)
 {
     this.daoFactory = daoFactory.notNull();
     this.cacheManager = cacheManager.notNull();
 }
Example #5
0
 public PlayService(IDaoFactory daoFactory, IUnitOfWork unitOfWork, ICacheManager cacheManager)
 {
     this.cacheManager = cacheManager.notNull();
     this.daoFactory = daoFactory.notNull();
     this.unitOfWork = unitOfWork.notNull();
 }