Ejemplo n.º 1
0
 protected virtual void OnButtonSearchProduct(ButtonSearchProductEventArgs e)
 {
     if (ButtonSearchProduct != null)
     {
         ButtonSearchProduct(this, e);
     }
 }
Ejemplo n.º 2
0
        private ButtonSearchProductEventArgs OnButtonSearchProductForOut()
        {
            ButtonSearchProductEventArgs args = new ButtonSearchProductEventArgs();

            OnButtonSearchProduct(args);

            return(args);
        }
Ejemplo n.º 3
0
        private ButtonSearchProductEventArgs OnButtonSearchProduct(string name, string parentsName, string subName, string size, string color)
        {
            ButtonSearchProductEventArgs args = new ButtonSearchProductEventArgs(name, parentsName, subName, size, color);

            OnButtonSearchProduct(args);

            return(args);
        }