Exemple #1
0
 public StartViewPresenter(
     IPresentationCore context,
     IMessageDefinitionService messageDefinitionService)
 {
     this.context = context ?? throw new ArgumentNullException(nameof(context));
     this.messageDefinitionService = messageDefinitionService ?? throw new ArgumentNullException(nameof(messageDefinitionService));
 }
Exemple #2
0
 public ShowStartScreen(
     IPresentationCore presentationCore,
     IMessageDefinitionService messageDefinitionService)
 {
     this.presentationCore         = presentationCore ?? throw new System.ArgumentNullException(nameof(presentationCore));
     this.messageDefinitionService = messageDefinitionService ?? throw new System.ArgumentNullException(nameof(messageDefinitionService));
 }
Exemple #3
0
 public PresentationSession(SessionDTO session)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     this.session = session;
     core         = new PresentationCore();
     FillSessionBoxes();
     LoadUnassinged();
 }
Exemple #4
0
 public ArticleDetails(ArticleDTO article)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core           = new ArticleCore();
     presCore       = new PresentationCore();
     currentArticle = article;
     FillArticleBoxes();
 }
Exemple #5
0
 public ManageAwards()
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     sessionCore      = new SessionCore();
     presentationCore = new PresentationCore();
     core             = new AwardCore();
     InitializeData();
 }
 public PresentationSpecialSession(SpecialSessionDTO session)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     this.session = session;
     core         = new PresentationCore();
     articleCore  = new ArticleCore();
     FillSessionBoxes();
     LoadPresentations();
 }
 public PresentationDetails(PresentationDTO presentation)
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     this.presentation = presentation;
     authCore          = new AuthenticationCore();
     articleCore       = new ArticleCore();
     sessionCore       = new SessionCore();
     core = new PresentationCore();
     FillPresentationBoxes();
 }
 public MySessions()
 {
     InitializeComponent();
     WindowHelper.SmallWindowSettings(this);
     core             = new SessionCore();
     articleCore      = new ArticleCore();
     presentationCore = new PresentationCore();
     confCore         = new ConferenceCore();
     InitializeGradeBox();
     LoadSessions();
 }
Exemple #9
0
 public MessengerPresenter(IPresentationCore context, AcceptMessage acceptMessage)
 {
     this.context       = context ?? throw new ArgumentNullException(nameof(context));
     this.acceptMessage = acceptMessage ?? throw new ArgumentNullException(nameof(acceptMessage));
 }
Exemple #10
0
 public ShowMessenger(IPresentationCore presentationCore, IMessengerService messengerService)
 {
     this.presentationCore = presentationCore ?? throw new System.ArgumentNullException(nameof(presentationCore));
     this.messengerService = messengerService ?? throw new System.ArgumentNullException(nameof(messengerService));
 }