public string GetRolesForUser(string username)
    {
        string roles = "";

        try
        {
            roles = _idau.GetRolesForUser(username);
        }
        catch (Exception)
        {
            throw;
        }
        return(roles);
    }