using System;
using Kreta.Core.IoC;
namespace Kreta.Naplo.WebApi
{
///
/// Business logic layer
///
public class WebApiLayer : ApplicationLayer
{
///
/// Instance
///
static Lazy instance;
///
/// Instance
///
public static WebApiLayer Instance
{
get { return instance.Value; }
}
///
/// Static constructor
///
static WebApiLayer()
{
instance = new Lazy();
}
}
}