Example #1
0
    private string GetApiTIDByMobile(string MobileNo)
    {
        DataTable dt     = new DataTable();
        string    custID = "";

        try
        {
            dt = obj_wallet.getApitbleIDbyMobile(MobileNo);
            if (dt.Rows.Count > 0)
            {
                custID = dt.Rows[0]["RTID"].ToString();
            }
        }
        catch
        { }
        return(custID);
    }