コード例 #1
0
 public AndPatientSpecification(IPatientSpecificationIntegration patientA, IPatientSpecificationIntegration patientB)
 {
     One = patientA;
     Other = patientB;
 }
コード例 #2
0
 public IPatientSpecificationIntegration And(IPatientSpecificationIntegration other)
 {
     return new AndPatientSpecification(this, other);
 }