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.
 
 
 
 
 

29 lines
841 B

using Swift.web.Library;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Swift.web.Remit.Compliance.ComplianceOfacRejectReport
{
public partial class Manage : System.Web.UI.Page
{
private readonly RemittanceLibrary sl = new RemittanceLibrary();
private const string ViewFunctionId = "20570000";
protected void Page_Load(object sender, EventArgs e)
{
Authenticate();
if (!IsPostBack)
{
fromDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
toDate.Text = DateTime.Now.ToString("yyyy-MM-dd");
}
}
private void Authenticate()
{
sl.CheckAuthentication(ViewFunctionId);
}
}
}