public AndPatientSpecification(IPatientSpecificationIntegration patientA, IPatientSpecificationIntegration patientB)
 {
     One = patientA;
     Other = patientB;
 }
 public IPatientSpecificationIntegration And(IPatientSpecificationIntegration other)
 {
     return new AndPatientSpecification(this, other);
 }