You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
634 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.MessageEvent
{
/// <summary>
/// 消息事件管理器生成工厂
/// </summary>
public class MsgEventFactory
{
private static MsgEventsContainer _msgEventsContainer = null;
public static MsgEventsContainer EventsContainer
{
get
{
if (_msgEventsContainer == null)
{
_msgEventsContainer = new MsgEventsContainer();
}
return _msgEventsContainer;
}
}
}
}