Exemplo n.º 1
0
        public bool Check_TmpData(string s_LoginUser, string V_SESSION_ID, out Int32 iTotalCount, out Int32 iOKCount, out Int32 iErrCount)
        {
            #region
            bool bResult = false;
            iOKCount = 0;
            iErrCount = 0;

            VDS_ALO_STORESPEC_TMP_DBO ALOM = new VDS_ALO_STORESPEC_TMP_DBO(ref USEDB);

            ArrayList ParameterList = new ArrayList();
            ParameterList.Add(s_LoginUser);
            ParameterList.Add(V_SESSION_ID);
            ALOM.doCheck_TmpData(ParameterList, out iTotalCount, out iOKCount, out iErrCount);

            if (iErrCount != 0)
                bResult = false;
            else
                bResult = true;

            return bResult;
            #endregion
        }