29 lines
746 B
C#
29 lines
746 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace GPW_Admin
|
|
{
|
|
public partial class fasi : BasePage
|
|
{
|
|
#region Private Methods
|
|
|
|
private void Mod_pageSize_eh_nuovaSize(object sender, EventArgs e)
|
|
{
|
|
mod_adminFasi1.doUpdate();
|
|
}
|
|
|
|
#endregion Private Methods
|
|
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// imposto fasi selezionate!
|
|
mod_adminFasi1.idxCliente = memLayer.ML.IntSessionObj("idxCli_sel");
|
|
mod_adminFasi1.idxProgetto = memLayer.ML.IntSessionObj("idxProgetto_sel");
|
|
mod_pageSize.eh_nuovaSize += Mod_pageSize_eh_nuovaSize;
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |