예제 #1
0
 public RegisterTimeForm(RegisterTimeNotification RegisterTimeNotification)
     : this()
 {
     if (RegisterTimeNotification == null)
     {
         throw new ArgumentNullException("RegisterTimeNotification");
     }
 }
예제 #2
0
        private void HandleRegisterTimeNotificationInteraction(InteractionRequestedEventArgs e)
        {
            if (e == null)
            {
                throw new ArgumentNullException("InteractionRequestedEventArgs");
            }

            RegisterTimeNotification context = (RegisterTimeNotification)e.Context;
            RegisterTimeNotification results = InvokeInteraction <RegisterTimeNotification, RegisterTimeNotification>("RegisterTimeForm", context, true);
        }