AJH.CMS.WEB.UI.Admin.ManageProducts_UC.gvCombinationProducts_RowCommand C# (CSharp) Method

gvCombinationProducts_RowCommand() private method

private gvCombinationProducts_RowCommand ( object sender, System.Web.UI.WebControls.GridViewCommandEventArgs e ) : void
sender object
e System.Web.UI.WebControls.GridViewCommandEventArgs
return void
        void gvCombinationProducts_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            switch (e.CommandName)
            {
                case "EditCombination":
                    {
                        BeginCombinationProductEditMode(Convert.ToInt32(e.CommandArgument));
                        SelecedCombinationProductId = Convert.ToInt32(e.CommandArgument);
                        upnlCombinationProductDetails.Update();

                        break;
                    }
                default:
                    break;
            }
        }