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
493 B

using Swift.web.Library;
using System;
namespace Swift.web.Remit.BonusManagement.BonusPointReport
{
public partial class Manage : System.Web.UI.Page
{
private readonly SwiftLibrary _sl = new SwiftLibrary();
private const string ViewFunctionId = "20822300";
protected void Page_Load(object sender, EventArgs e)
{
_sl.CheckSession();
if (!IsPostBack)
{
Authenticate();
}
}
private void Authenticate()
{
_sl.CheckAuthentication(ViewFunctionId);
}
}
}