using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace GPW_Smart.WebUserControls
{
public partial class mod_opzTimbratura : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public event EventHandler ev_reqAbilitaAll;
///
/// abilita entrambi i buttons...
///
///
///
protected void btnAbilitaFull_Click(object sender, EventArgs e)
{
ev_reqAbilitaAll?.Invoke(this, new EventArgs());
}
}
}