CloverExamplePOS.StoreDiscount.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : StoreDiscount
return StoreDiscount
        public static StoreDiscount operator +(StoreDiscount StoreDiscount, EventHandler handler)
        {
            StoreDiscount.DiscountButton.Click += handler;
            StoreDiscount.DiscountPrice.Click += handler;
            StoreDiscount.DiscountNumber.Click += handler;
            return StoreDiscount;
        }