using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using AppData;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF
{
public class BaseUserControl : System.Web.UI.UserControl
{
///
/// Generico evento di richiesta refresh a aprent
///
public event EventHandler eh_doRefresh;
///
/// Generico evento di richiesta refresh a aprent
///
public event EventHandler eh_doReset;
///
/// Chiamata evento
///
public void raiseEvent()
{
// se qualcuno ascolta sollevo evento nuovo valore...
if (eh_doRefresh != null)
{
eh_doRefresh(this, new EventArgs());
}
}
///
/// Chiamata evento
///
public void raiseReset()
{
// se qualcuno ascolta sollevo evento nuovo valore...
if (eh_doReset != null)
{
eh_doReset(this, new EventArgs());
}
}
///
/// Wrapper traduzione termini
///
///
///
public string traduci(string lemma)
{
return SteamWare.user_std.UtSn.Traduci(lemma);
}
}
}