Can be stored in Session or in ViewState (see base properties).
[Serializable]
public class AcceptRejectPresentationModel : PresentationModelBase
{
private static ICustomPermissionsService PermissionService
{
get { return ServiceProvider.GetInstance<ICustomPermissionsService>(); }
}
public string CurrentEmployeeName { get; set; }
public DateTime CurrentEmployeeBirthDate { get; set; }
public void AcceptCurrentEmployee(string comment)
{
(...)
}
}