narsil/Tanshu.Accounts.PointOfSale/Authentication/Session.cs

39 lines
868 B
C#
Raw Normal View History

2011-01-06 07:17:00 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.PointOfSale
{
static class Session
{
private static UserBO currentUser;
public static bool IsAuthenticated { get; private set; }
public static UserBO User
{
get
{
return currentUser;
}
set
{
if (value != null)
{
currentUser = value;
IsAuthenticated = true;
}
else
{
currentUser = null;
IsAuthenticated = false;
}
}
}
static public string printer()
{
return "";
}
}
}