public TotemEntryService(ITotemEntryRepository totemEntryRepository, IMapper mapper,
                          ILeidingRepository leidingRepository, IAdjectiefRepository adjectiefRepository, ITotemRepository totemRepository)
 {
     _totemEntryRepository = totemEntryRepository;
     _adjectiefRepository  = adjectiefRepository;
     _totemRepository      = totemRepository;
     _leidingRepository    = leidingRepository;
     _mapper = mapper;
 }
Beispiel #2
0
 public TotemService(ITotemRepository totemRepository, IMapper mapper, ApplicationDbContext dbContext)
 {
     _totemRepository = totemRepository;
     _mapper          = mapper;
     _dbContext       = dbContext;
 }
 public TotemService(ITotemRepository totemRepository)
 {
     _totemRepository = totemRepository;
 }