public PresentationController(IYouConfDbContext youConfDbContext)
 {
     if (youConfDbContext == null)
     {
         throw new ArgumentNullException("youConfDbContext");
     }
     YouConfDbContext = youConfDbContext;
 }
Esempio n. 2
0
 public ConferenceController(IYouConfDbContext youConfDbContext)
 {
     if (youConfDbContext == null)
     {
         throw new ArgumentNullException("youConfDbContext");
     }
     YouConfDbContext = youConfDbContext;
 }
Esempio n. 3
0
        public AccountController(IYouConfDbContext youConfDbContext, IMailSender mailSender)
        {
            if (youConfDbContext == null)
            {
                throw new ArgumentNullException("youConfDbContext");
            }

            YouConfDbContext = youConfDbContext;
        }
Esempio n. 4
0
        public AccountController(IYouConfDbContext youConfDbContext, IMailSender mailSender)
        {
            if (youConfDbContext == null)
            {
                throw new ArgumentNullException("youConfDbContext");
            }

            YouConfDbContext = youConfDbContext;
        }
Esempio n. 5
0
 public UpdateSolrIndexMessageHandler(IYouConfDbContext db, ISolrOperations <ConferenceDto> solr)
 {
     Db   = db;
     Solr = solr;
 }