Esempio n. 1
0
 public EventRepository(ISitecoreContext sitecoreContext,
                        IEventSearchRepository eventSearchRepository)
 {
     this._sitecoreContext      = sitecoreContext;
     this.EventSearchRepository = eventSearchRepository;
 }
 public MovieReleasedToTheaterEventsController(IEventSearchRepository <MovieReleasedToTheaterEvent> repository) : base(repository)
 {
 }
 protected BaseEventSearchController(IEventSearchRepository <T> repository)
 {
     _repository = repository;
 }