public ValidationContext(AcceptValidationError acceptErrorDelegate, FetchOperationalObject fetchObjectDelegate)
 {
     AcceptError = acceptErrorDelegate;
     FetchObject = fetchObjectDelegate;
 }
 public ValidationContext(AcceptValidationError acceptErrorDelegate, FetchOperationalObject fetchObjectDelegate)
 {
     AcceptError = acceptErrorDelegate;
     FetchObject = fetchObjectDelegate;
 }
 public ValidationContext(AcceptValidationError acceptErrorDelegate, FetchOperationalObject fetchObjectDelegate, ITerminologyService terminologyService)
     : this(acceptErrorDelegate, fetchObjectDelegate)
 {
     Check.Require(terminologyService != null, "terminologyService must not be null.");
     this.terminologyService = terminologyService;
 }
 public ValidationContext(AcceptValidationError acceptErrorDelegate, FetchOperationalObject fetchObjectDelegate, ITerminologyService terminologyService)
     : this(acceptErrorDelegate, fetchObjectDelegate)
 {
     Check.Require(terminologyService != null, "terminologyService must not be null.");
     this.terminologyService = terminologyService;
 }