init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue