public NominatieService(TFContext context, IGenericRepository<Award> repoAward, INominatieRepository repoNominatie, IGenericRepository<JuryLid> repoJuryLid ,
     IJuryKeuzeRepository repoJuryKeuze, IUOW uow, INominatieEngine engNominatie)
 {
     this.context = context;
     this.repoAward = repoAward;
     this.repoNominatie = repoNominatie;
     this.repoJuryLid = repoJuryLid;
     this.repoJuryKeuze = repoJuryKeuze;
     this.uow = uow;
     this.engNominatie = engNominatie;
 }
 public ContentService(TFContext context, IGenericRepository<Award> repoAward, INominatieRepository repoNominatie, ISponsorRepository repoSponsor, INieuwsItemRepository repoNieuwsItem, IGenericRepository<Setup> repoSetup,
  IGenericRepository<Contact> repoContact ,  IGenericRepository<HallOfFame> repoHallOfFame ,  IGenericRepository<Home> repoHome ,  IGenericRepository<JuryLid> repoJuryLid , IGenericRepository<Page> repoPage ,
 IJuryKeuzeRepository repoJuryKeuze, IGenericRepository<FlickrAlbum> repoFlickr, IUOW uow)
 {
     this.context = context;
     this.repoAward = repoAward;
     this.repoNominatie = repoNominatie;
     this.repoSponsor = repoSponsor;
     this.repoNieuwsItem = repoNieuwsItem;
     this.repoSetup = repoSetup;
     this.repoContact = repoContact;
     this.repoHallOfFame = repoHallOfFame;
     this.repoHome = repoHome;
     this.repoJuryLid = repoJuryLid;
     this.repoPage = repoPage;
     this.repoJuryKeuze = repoJuryKeuze;
     this.uow = uow;
     this.repoFlickr = repoFlickr;
 }