Exemple #1
0
 protected virtual void OnVisitSave(VisitEventArgs e)
 {
     if (VisitSave != null)
     {
         VisitSave(this, e);
     }
 }
        protected virtual void OnVisitEnded(VisitEventArgs e)
        {
            EventHandler <VisitEventArgs> handler = VisitEnded;

            if (handler != null)
            {
                handler(this, e);
            }
        }