Beispiel #1
0
 public ThemeEngineService(IThemeEngineRepository themeEngine)
 {
     _themeEngine = themeEngine;
 }
Beispiel #2
0
 public CachedThemeEngineRepository(IThemeEngineRepository themeRepository)
 {
     _themeRepository = themeRepository;
 }
Beispiel #3
0
 public ThemeRepository(IThemeEngineRepository themeEngine, DomainMapperService mapper)
 {
     _context     = new ThemeDbContext();
     _themeEngine = themeEngine;
     _mapper      = mapper;
 }