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.
 
 
 
 
 

23 lines
704 B

using Swift.DAL.SwiftDAL;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
namespace Swift.DAL.Remittance.Transaction.CustomerSoa
{
public class CustomerSoaDao : RemittanceDao
{
public DataSet GetCustomerSao(string fromDate, string toDate, string email, string reportType)
{
string sql = "EXEC proc_CustomerSoa";
sql += " @flag =" + FilterString(reportType);
sql += " , @fromDate =" + FilterString(fromDate);
sql += " , @toDate =" + FilterString(toDate);
sql += " ,@cusEmail =" + FilterString(email);
return ExecuteDataset(sql);
}
}
}