Ejemplo n.º 1
0
    public string IsValidUser(string uname, string pwd)
    {
        string res = "";

        try
        {
            res = idau.IsValidUser(uname, pwd);
        }
        catch (Exception)
        {
            throw;
        }
        return(res);
    }