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

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

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