41 lines
955 B
C#
41 lines
955 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.WebUserControls
|
|
{
|
|
public partial class cmp_checkC19 : BaseUserControl
|
|
{
|
|
#region Public Properties
|
|
|
|
public int pageSize
|
|
{
|
|
get => grView.PageSize;
|
|
set
|
|
{
|
|
grView.PageSize = value;
|
|
}
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
mod_periodoAnalisi.intervalloAnalisi = new SteamWare.intervalloDate()
|
|
{
|
|
inizio = DateTime.Today.AddDays(1).AddMonths(-3),
|
|
fine = DateTime.Today.AddDays(1)
|
|
};
|
|
}
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |