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.

22 lines
704 B

  1. using Swift.DAL.SwiftDAL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Swift.DAL.Remittance.Transaction.CustomerSoa
  8. {
  9. public class CustomerSoaDao : RemittanceDao
  10. {
  11. public DataSet GetCustomerSao(string fromDate, string toDate, string email, string reportType)
  12. {
  13. string sql = "EXEC proc_CustomerSoa";
  14. sql += " @flag =" + FilterString(reportType);
  15. sql += " , @fromDate =" + FilterString(fromDate);
  16. sql += " , @toDate =" + FilterString(toDate);
  17. sql += " ,@cusEmail =" + FilterString(email);
  18. return ExecuteDataset(sql);
  19. }
  20. }
  21. }