Files
GPW/GPW_Admin/malattia.aspx.cs
Samuele Locatelli 1e7b4147ea GPW:
- Gestione flusso malattie
- email eliminazione (mal e richieste)
2023-01-04 13:59:43 +01:00

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
}
}