Beispiel #1
0
 public ViewTimeClockEntriesForm(ViewTimeClockEntriesNotification ViewTimeClockEntriesNotification)
     : this()
 {
     if (ViewTimeClockEntriesNotification == null)
     {
         throw new ArgumentNullException("ViewTimeClockEntriesNotification");
     }
 }
Beispiel #2
0
        private void HandleViewTimeClockEntriesNotificationInteraction(InteractionRequestedEventArgs e)
        {
            if (e == null)
            {
                throw new ArgumentNullException("InteractionRequestedEventArgs");
            }

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