コード例 #1
0
 private void LoadViewFromModel()
 {
     if (_view.NotificationType == null)
     {
         _view.Notifications = _model.GetAllNotification();
     }
     else
     {
         _view.Notifications = _model.GetNotificationText(Convert.ToInt16(_view.NotificationType));
     }
 }
コード例 #2
0
 private void LoadViewFromModel()
 {
     _view.Notifications = _model.GetAllNotification();
 }