public override bool Validate_StudentInformationRequest(InformationRequest requestObject)
 {
     return true;
 }
        public void Validate_StudentInformationRequest(InformationRequest requestObject)
        {
            exceptionThrown = null;

            try
            {
                testService.Validate_StudentInformationRequest(requestObject);
            }
            catch (Exception ex)
            {
                exceptionThrown = ex;
            }
        }
 public virtual bool Validate_StudentInformationRequest(InformationRequest requestObject)
 {
     return true;
 }