public ObjectResult <spOrder_TrackingModuleGetAll_Result> GetCurrentTracking()
 {
     try
     {
         return(context.spOrder_TrackingModuleGetAll(mProductCategoryId, mOrderNumber, null, null));
     }
     catch (Exception x)
     {
         throw (x);
     }
 }
Exemple #2
0
 public ObjectResult <spOrder_TrackingModuleGetAll_Result> GetCurrentTracking(int?productCateory, string order_no, DateTime?sdate, DateTime?edate)
 {
     try
     {
         return(context.spOrder_TrackingModuleGetAll(productCateory, order_no, sdate, edate));
     }
     catch (Exception x)
     {
         throw (x);
     }
 }