예제 #1
0
 /// <summary>
 /// 删除待办(删除该系统指定的接收用户单据)
 /// </summary>
 /// <param name="UserAndForm"></param>
 /// <param name="strSystemCode"></param>       
 public void TaskDelete(List<CustomUserMsg> UserAndForm, string strSystemCode)
 {
     string ss = "";
     foreach (CustomUserMsg list in UserAndForm)
     {
         ss += "FormID:" + list.FormID + "UserID:" + list.UserID;
     }
     Record.WriteLogFunction("TaskDelete()UserAndForm:" + ss + "strSystemCode:" + strSystemCode + "");
     EngineServicesBLL bll = new EngineServicesBLL();
     bll.TaskDelete(UserAndForm, strSystemCode);
 }
예제 #2
0
 /// <summary>
 /// 删除待办(删除该系统中指定的单据)
 /// </summary>
 /// <param name="strSystemCode"></param>
 /// <param name="strFormID"></param>        
 public void TaskDelete(string strSystemCode, string strFormID, string strReceiveID)
 {
     Record.WriteLogFunction("TaskDelete()strSystemCode:" + strSystemCode + "strFormID:" + strFormID + "");
     EngineServicesBLL bll = new EngineServicesBLL();
     bll.TaskDelete(strSystemCode, strFormID, strReceiveID);
 }
 /// <summary>
 /// 删除待办(删除该系统中指定的单据)
 /// </summary>
 /// <param name="strSystemCode"></param>
 /// <param name="strFormID"></param>        
 public void TaskDelete(string strSystemCode, string strFormID, string strReceiveID)
 {
     Tracer.Debug("TaskDelete()strSystemCode:" + strSystemCode + "strFormID:" + strFormID + "");
     EngineServicesBLL bll = new EngineServicesBLL();
     bll.TaskDelete(strSystemCode, strFormID, strReceiveID);
 }