Example #1
0
 public static DataTable getChallenList(long customerId, DateTime fromDate, DateTime toDate, long financialYearID)
 {
     try
     {
         DataTable i = SaleChallanTempProvider.getChallenList(customerId, fromDate, toDate, financialYearID);
         return(i);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public static DataTable getChallenList(DateTime fromDate, DateTime toDate, long financialYearId)
 {
     try
     {
         DataTable dtSaleChallanList = SaleChallanTempProvider.getChallenList(fromDate, toDate, financialYearId);
         return(dtSaleChallanList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }