32 lines
705 B
C#
32 lines
705 B
C#
using System;
|
|
using Kreta.Core.IoC;
|
|
|
|
namespace Kreta.Naplo.BusinessLogic.Propetries
|
|
{
|
|
/// <summary>
|
|
/// Application layer
|
|
/// </summary>
|
|
public class BusinessLogicLayer : ApplicationLayer
|
|
{
|
|
/// <summary>
|
|
/// Instance
|
|
/// </summary>
|
|
static Lazy<BusinessLogicLayer> instance;
|
|
|
|
/// <summary>
|
|
/// Instance
|
|
/// </summary>
|
|
public static BusinessLogicLayer Instance
|
|
{
|
|
get { return instance.Value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Static constructor
|
|
/// </summary>
|
|
static BusinessLogicLayer()
|
|
{
|
|
instance = new Lazy<BusinessLogicLayer>();
|
|
}
|
|
}
|
|
}
|