コード例 #1
0
        /// <summary>
        /// Log thao tác dữ liệu
        /// </summary>
        /// <param name="db"></param>
        /// <param name="userName"></param>
        /// <param name="content"></param>
        /// <param name="objectId"></param>
        public static void SaveLogEvent(TimeAttendanceEntities db, string userId, string description, string objectId)
        {
            int          logType = Constants.LogTypeDataMining;
            UserEventLog model   = new UserEventLog()
            {
                UserEventLogId = Guid.NewGuid().ToString(),
                UserId         = userId,
                Description    = description,
                LogType        = logType,
                CreateDate     = DateTime.Now
            };

            db.UserEventLog.Add(model);
            //db.SaveChanges();
        }
コード例 #2
0
        public static void SaveLogLogout(TimeAttendanceEntities db, string userId)
        {
            int          logType = Constants.LogTypeAccess;
            UserEventLog model   = new UserEventLog()
            {
                UserEventLogId = Guid.NewGuid().ToString(),
                UserId         = userId,
                Description    = "Đăng xuất khỏi hệ thống",
                LogType        = logType,
                CreateDate     = DateTime.Now,
            };

            db.UserEventLog.Add(model);
            db.SaveChanges();
        }