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