Exemplo n.º 1
0
    public string Login(string userName, string userPassword)
    {
        JsonData jd = BLService.Login(userName, userPassword);

        if (jd.AU == null)
        {
            jd = new JsonData("No Data");
        }

        return(js.Serialize(jd));
    }