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
550 B
C#
27 lines
550 B
C#
using System;
|
|
|
|
namespace Aucma.Scada.Business
|
|
{
|
|
/// <summary>
|
|
/// 入库任务处理
|
|
/// </summary>
|
|
internal sealed class InStoreTaskHandle
|
|
{
|
|
#region 单例实现
|
|
private static readonly Lazy<InStoreTaskHandle> lazy = new Lazy<InStoreTaskHandle>(() => new InStoreTaskHandle());
|
|
public static InStoreTaskHandle Instance
|
|
{
|
|
get
|
|
{
|
|
return lazy.Value;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
private InStoreTaskHandle()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|