public ProposalController(ConferenceRepo conferenceRepo, ProposalRepo proposalRepo,
                           IDataProtectionProvider protectionProvider, PurposeStringConstants purposeStrings)
 {
     this.protector      = protectionProvider.CreateProtector(purposeStrings.ConferenceIdQueryString);
     this.conferenceRepo = conferenceRepo;
     this.proposalRepo   = proposalRepo;
 }
        public ProposalController(ConferenceRepo conferenceRepo, ProposalRepo proposalRepo,
                                  IDataProtectionProvider dataProtectionProvider, PurposeStringConstants constants)
        {
            _protector = dataProtectionProvider.CreateProtector(constants.ConferenceIdQueryString);

            _conferenceRepo = conferenceRepo;
            _proposalRepo   = proposalRepo;
        }
 public ProposalController(ConferenceRepo conferenceRepo, ProposalRepo proposalRepo)
 {
     this.conferenceRepo = conferenceRepo;
     this.proposalRepo   = proposalRepo;
 }
 public ConferenceController(ConferenceRepo repo)
 {
     this.repo = repo;
 }