init
This commit is contained in:
@@ -0,0 +1 @@
|
||||
|
@@ -0,0 +1,32 @@
|
||||
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>();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user