Exemple #1
0
 protected virtual void OnTakeOutSelected(TakeOutSelectedEventArgs e)
 {
     if (TakeOutSelected != null)
     {
         TakeOutSelected(this, e);
     }
 }
Exemple #2
0
        private TakeOutSelectedEventArgs OnTakeOutSelectedForOut()
        {
            TakeOutSelectedEventArgs args = new TakeOutSelectedEventArgs();

            OnTakeOutSelected(args);

            return(args);
        }
Exemple #3
0
        private TakeOutSelectedEventArgs OnTakeOutSelected(bool takenOut)
        {
            TakeOutSelectedEventArgs args = new TakeOutSelectedEventArgs(takenOut);

            OnTakeOutSelected(args);

            return(args);
        }