1e7b4147ea
- Gestione flusso malattie - email eliminazione (mal e richieste)
30 lines
651 B
C#
30 lines
651 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace GPW_Admin
|
|
{
|
|
public partial class malattia : BasePage
|
|
{
|
|
#region Private Methods
|
|
|
|
private void Mod_pageSize_eh_nuovaSize(object sender, EventArgs e)
|
|
{
|
|
cmp_gestMalattia.doUpdate();
|
|
}
|
|
|
|
#endregion Private Methods
|
|
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
mod_pageSize.eh_nuovaSize += Mod_pageSize_eh_nuovaSize;
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |