Exemplo n.º 1
0
    void TestMethod()
    {
        Int32  Result = -1;
        String ErrMsg = String.Empty;

        try
        {
            //for (Int32 i = 0; i < 50; i++)
            //{
            //根据电话取得相关的客户信息(客户电话表CustPhone)
            BasicInfoV2Record[] custinfoList = PhoneBO.GetQueryByPhone("35000000", "18918790558", out Result, out ErrMsg);
            //}
        }
        catch (Exception ex)
        {
            ErrMsg += ex.Message;
        }
        finally
        {
            log(ErrMsg);
        }
    }