public CreativeTeamService( ITheaterScheduleUnitOfWork theaterScheduleUnitOfWork, ICreativeTeamRepository creativeTeamRepository, IMemoryCache memoryCache) { this.theaterScheduleUnitOfWork = theaterScheduleUnitOfWork; this.creativeTeamRepository = creativeTeamRepository; this.memoryCache = memoryCache; }
public PerformanceDetailsServiceWp( ITheaterScheduleUnitOfWork theaterScheduleUnitOfWork, IPerformanceDetailsRepository performanceDetailsRepository, ITagRepository tagRepository, ICreativeTeamRepository creativeTeamRepository, IIsCheckedPerformanceRepository isCheckedPerformanceRepository, IMemoryCache memoryCache) { this.theaterScheduleUnitOfWork = theaterScheduleUnitOfWork; this.performanceDetailsRepository = performanceDetailsRepository; this.tagRepository = tagRepository; this.creativeTeamRepository = creativeTeamRepository; this.isCheckedPerformanceRepository = isCheckedPerformanceRepository; this.memoryCache = memoryCache; }
public CreativeTeamController() { _creativeTeamRepository = new CreativeTeamRepository(_connectionString); }