using System; using System.Collections.Generic; using System.Text; namespace Web.SkySales.Rules { public class CheckSessionRule : CustomBaseRule { /// /// An example of a simple rule based on the CustomBaseRule /// /// /// public override bool OnValidate(Navitaire.Common.UI.Shell.WorkflowState workflowState) { return Booking.Recordlocator == String.Empty; } } }