CloverExamplePOS.StoreDiscount.operator C# (CSharp) Метод

operator() публичный статический Метод

public static operator ( ) : StoreDiscount
Результат StoreDiscount
        public static StoreDiscount operator +(StoreDiscount StoreDiscount, EventHandler handler)
        {
            StoreDiscount.DiscountButton.Click += handler;
            StoreDiscount.DiscountPrice.Click += handler;
            StoreDiscount.DiscountNumber.Click += handler;
            return StoreDiscount;
        }