17 lines
348 B
C#
17 lines
348 B
C#
using System.Collections.Generic;
|
|
using Sockeye.Biz;
|
|
|
|
namespace Sockeye.Api.ControllerHelpers
|
|
{
|
|
|
|
|
|
internal static class UserTypeFromContext
|
|
{
|
|
internal static UserType Type(IDictionary<object, object> HttpContextItems)
|
|
{
|
|
return (UserType)HttpContextItems["AY_USER_TYPE"];
|
|
}
|
|
}
|
|
|
|
|
|
}//eons |