Esempio n. 1
0
 public SurveyService(DB_PESQUISA_TCCContext context, IAnswerService answerService, IPhotoService photoService)
 {
     _context       = context;
     _answerService = answerService;
     _photoService  = photoService;
 }
Esempio n. 2
0
 public CacheService(IMemoryCache memoryCache, DB_PESQUISA_TCCContext context)
 {
     _memoryCache = memoryCache;
     _context     = context;
 }
Esempio n. 3
0
 public PhotoService(DB_PESQUISA_TCCContext context, IEntitySearchAlgorithm <Photo> entitySearchAlgorithm, ICacheService cacheService)
 {
     _context = context;
     _entitySearchAlgorithm = entitySearchAlgorithm;
     _cacheService          = cacheService;
 }
Esempio n. 4
0
 public AnswerService(DB_PESQUISA_TCCContext context, IPhotoService photoService)
 {
     _context      = context;
     _photoService = photoService;
 }
Esempio n. 5
0
 public EnumService(DB_PESQUISA_TCCContext context)
 {
 }