Esempio n. 1
0
        public int SignoutUser(int pSessionID)
        {
            int updated = default(int);

            try
            {
                var session = sessionDAL.GetSessionByID(pSessionID);

                if (session != null)
                {
                    session.ActiveSession = false;
                    updated = sessionDAL.UpdateSession(session);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.InnerException);
                EventViewerLoggerBL.LogError("SignoutUser: " + ex.Message);
            }

            return(updated);
        }