public Dictionary <string, Object> GetFaHuoAndShouHuoCount(string MemLoginID, string agentID)
 {
     try
     {
         Dictionary <string, Object> dic = new Dictionary <string, object>();
         var resultModel = CommonRequest.ApiFaHuoAndShouHuoCount(MemLoginID, agentID);
         dic.Add("Data", resultModel);
         return(dic);
     }
     catch (Exception e)
     {
         logger.Error("获取待发货订单数量接口异常:" + e.Message);
         return(null);
     }
 }