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.

20 lines
518 B

  1. using Swift.web.Library;
  2. using System;
  3. namespace Swift.web.AgentNew.ReprintReceipt
  4. {
  5. public partial class SearchTransaction : System.Web.UI.Page
  6. {
  7. private readonly RemittanceLibrary _sl = new RemittanceLibrary();
  8. private const string ViewFunctionId = "40101900";
  9. protected void Page_Load(object sender, EventArgs e)
  10. {
  11. Authenticate();
  12. }
  13. private void Authenticate()
  14. {
  15. _sl.CheckAuthentication(ViewFunctionId);
  16. }
  17. }
  18. }