Esempio n. 1
0
    public int SetNotificationInformation(Guid SessionId, string NotificationURL)
    {
        SessionManager objSessionMgr = new SessionManager();

        try
        {
            objSessionMgr.AddNotificationURL(SessionId, NotificationURL);
        }
        catch
        {
            LogManager.WriteLog(TraceType.ERROR, "Error occured while calling SessionManager.AddNotificationURL() in the method CommonService.SetNotificationInformation");
        }
        return(0);
    }