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.

24 lines
743 B

  1. using Swift.DAL.AccountReport;
  2. using Swift.DAL.SwiftDAL;
  3. using Swift.web.Library;
  4. using System;
  5. namespace Swift.web.AccountReport
  6. {
  7. public partial class EOD : System.Web.UI.Page
  8. {
  9. private string ViewFunctionId = "20180000";
  10. private readonly RemittanceLibrary _sl = new RemittanceLibrary();
  11. private AccountStatementDAO cavDao = new AccountStatementDAO();
  12. protected void Page_Load(object sender, EventArgs e)
  13. {
  14. _sl.CheckAuthentication(ViewFunctionId);
  15. }
  16. protected void Transfer_Click(object sender, EventArgs e)
  17. {
  18. DbResult _dbRes = cavDao.PerformEOD(GetStatic.GetUser());
  19. GetStatic.AlertMessage(this, _dbRes.Msg);
  20. }
  21. }
  22. }