Ejemplo n.º 1
0
 /// <summary>
 /// 获取用户有哪些未处理的单据
 /// </summary>
 /// <param name="UserID"></param>
 /// <returns></returns>
 public List<FLOW_FLOWRECORDMASTER_T> GetFlowDataByUserID(string UserID)
 {
     try
     {
         FlowBLL Flow = new FlowBLL();
         return Flow.GetFlowDataByUserID(UserID);
     }
     catch (Exception ex)
     {
         Tracer.Debug("GetFlowDataByUserID:" + UserID + " Ex:" + ex.Message);
         throw ex;
     }
 }