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

            OnTakeOutSelected(args);

            return(args);
        }
Ejemplo n.º 3
0
        private TakeOutSelectedEventArgs OnTakeOutSelected(bool takenOut)
        {
            TakeOutSelectedEventArgs args = new TakeOutSelectedEventArgs(takenOut);

            OnTakeOutSelected(args);

            return(args);
        }