using System;
using Kreta.Core.IoC;
namespace Kreta.Naplo.BusinessLogic.Propetries
{
///
/// Application layer
///
public class BusinessLogicLayer : ApplicationLayer
{
///
/// Instance
///
static Lazy instance;
///
/// Instance
///
public static BusinessLogicLayer Instance
{
get { return instance.Value; }
}
///
/// Static constructor
///
static BusinessLogicLayer()
{
instance = new Lazy();
}
}
}