schangxiang@126.com
2025-09-17 f1859bb8b72998c4852aa23a605f6f7628599a2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using iWareLog.ORM;
using iWareLog.LOG.Entity;
using iWareLog.LOG.Dao;
using iWareCommon.Common.Service;
using iWareCommon.Utils;
using iWareLog.Properties;
using System;
 
namespace iWareLog.LOG.Service
{
    public class OperationService : CommonService<OperationEntity, LOGOperation, DbModelLog>
    {
           private static object Lock = new object();
 
           private OperationService() : base(OperationDao.GetInstance()) { }
 
           private static OperationService Instance = null;
 
        /// <summary>
        /// 获取单例的方法
        /// </summary>
        /// <returns>log服务的单例实体</returns>
           public static OperationService GetInstance()
        {
 
            if (Instance == null)
            {
                lock (Lock)
                {
                    if (Instance == null)
                    {
                        Instance = new OperationService();
                    }
                }
            }
            return Instance;
        }
 
           /// <summary>
           /// 写入日志
           /// </summary>
           /// <param name="tt_new"></param>
           /// <returns></returns>
           public void Save(OperationEntity dateLog)
           {
               try
               {
                   using (DbModelLog ml = new DbModelLog())
                   {
                       ml.LOGOperations.Add(dateLog.ToOrm());
                       ml.SaveChanges();
                   }
               }
               catch (Exception ex)
               {
                LogTextHelper.WriteLog(Resources.LogDir, this.ToString(), "Save", ex.Message);
                  
               }
           }
    }
}