You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
717 B

using Swift.web.Library;
using System;
namespace Swift.web.Remit.AgeingReport
{
public partial class SearchOutstanding : System.Web.UI.Page
{
private readonly StaticDataDdl _sdd = new StaticDataDdl();
private readonly RemittanceLibrary _sl = new RemittanceLibrary();
private const string ViewFunctionId = "43000000";
protected void Page_Load(object sender, EventArgs e)
{
Authenticate();
if (!IsPostBack)
{
asOnDate.Text = DateTime.Now.AddDays(-1).ToString("yyyy-MM-dd");
}
}
private void Authenticate()
{
_sl.CheckAuthentication(ViewFunctionId);
}
}
}