public ConferenceController(IYouConfDataContext youConfDataContext)
 {
     if (youConfDataContext == null)
     {
         throw new ArgumentNullException("youConfDataContext");
     }
     YouConfDataContext = youConfDataContext;
 }
Beispiel #2
0
 public SpeakerController(IYouConfDataContext youConfDataContext)
 {
     if (youConfDataContext == null)
     {
         throw new ArgumentNullException("youConfDataContext");
     }
     YouConfDataContext = youConfDataContext;
 }