예제 #1
0
        /// <summary>
        /// 发送待办(较旧接口) 没有公司过滤
        /// </summary>
        /// <param name="UserAndForm">接收用户与FormID</param>
        /// <param name="SystemCode">系统代号</param>
        /// <param name="ModelCode">模块代号</param>
        /// <param name="strXml">业务数据XML<</param>
        /// <param name="msgType">消息类型</param>
        public void ApplicationMsgTrigger(List <CustomUserMsg> UserAndForm, string SystemCode, string ModelCode, string strXml, MsgType msgType)
        {
            string ss = "";

            foreach (CustomUserMsg list in UserAndForm)
            {
                ss += "FormID:" + list.FormID + "UserID:" + list.UserID;
            }
            Record.WriteLogFunction("ApplicationMsgTrigger()UserAndForm:" + ss + "SystemCode:" + SystemCode + "ModelCode:" + ModelCode + "strXml:" + strXml + "msgType:" + msgType.ToString() + "");
            EngineServicesBLL bll = new EngineServicesBLL();

            bll.ApplicationMsgTrigger(UserAndForm, SystemCode, ModelCode, strXml, msgType);
        }