コード例 #1
0
ファイル: UCHome.cs プロジェクト: SieonLee/CafeKiosk
 protected virtual void OnTakeOutSelected(TakeOutSelectedEventArgs e)
 {
     if (TakeOutSelected != null)
     {
         TakeOutSelected(this, e);
     }
 }
コード例 #2
0
ファイル: UCHome.cs プロジェクト: SieonLee/CafeKiosk
        private TakeOutSelectedEventArgs OnTakeOutSelectedForOut()
        {
            TakeOutSelectedEventArgs args = new TakeOutSelectedEventArgs();

            OnTakeOutSelected(args);

            return(args);
        }
コード例 #3
0
ファイル: UCHome.cs プロジェクト: SieonLee/CafeKiosk
        private TakeOutSelectedEventArgs OnTakeOutSelected(bool takenOut)
        {
            TakeOutSelectedEventArgs args = new TakeOutSelectedEventArgs(takenOut);

            OnTakeOutSelected(args);

            return(args);
        }