/// <summary> /// Initializes a new instance of the event detail repository class. /// </summary> /// <param name="db">The database.</param> public EventRepository() { HollywoodTestEntities hollywoodTestEntities = new HollywoodTestEntities(); _dataAccessEventRepository = new DataAccess.Repository.EventRepository(hollywoodTestEntities); _eventDetailRepository = new EventDetailRepository(); }