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
using iWareLog.ORM;
using iWareLog.LOG.Entity;
using iWareLog.LOG.Dao;
using iWareCommon.Common.Service;
 
namespace iWareLog.LOG.Service
{
    public class ReceiveMsgLogService : CommonService<ReceiveMsgLogEntity, LOGReceiveMsgLog, DbModelLog>
    {
           private static object Lock = new object();
 
           private ReceiveMsgLogService() : base(ReceiveMsgLogDao.GetInstance()) { }
 
           private static ReceiveMsgLogService Instance = null;
 
        /// <summary>
        /// 获取单例的方法
        /// </summary>
        /// <returns>log服务的单例实体</returns>
           public static ReceiveMsgLogService GetInstance()
        {
 
            if (Instance == null)
            {
                lock (Lock)
                {
                    if (Instance == null)
                    {
                        Instance = new ReceiveMsgLogService();
                    }
                }
            }
            return Instance;
        }
 
 
    }
}