/// <summary> /// The constructor accepts a transaction that is cast into a type EnrollmentTransaction. /// </summary> /// <param name="TheTransaction">The parameter TheTransaction contains an enrollment transaction.</param> public ValidateBaseClass(EnrollmentTransaction TheTransaction) { transaction = TheTransaction; }
/// <summary> /// The constructor accepts a transaction that is cast into a type EnrollmentTransaction. /// </summary> /// <param name="TheTransaction">The parameter TheTransaction contains an enrollment transaction.</param> public ValidateBEQ(EnrollmentTransaction TheTransaction) : base(TheTransaction) { }
/// <summary> /// This constructor creates a new empty transaction, transaction properties must be set /// later by other classes. /// </summary> public ValidateBaseClass() { transaction = new EnrollmentTransaction(); }