Esempio n. 1
0
 bool ISpecification <T> .Match(T metadata)
 {
     return(specification
            .@Get(x => x.Match(metadata)));
 }
Esempio n. 2
0
 public Diagnostic(ISpecification <MemberInfo> errorSpec)
 {
     getMemberErrorSpec = errorSpec.@Get(x => () => x, getMemberErrorSpec);
 }
Esempio n. 3
0
 public Diagnostic(ISpecification <Assembly> errorSpec)
 {
     getAssemblyErrorSpec = errorSpec.@Get(x => () => x, getAssemblyErrorSpec);
 }
Esempio n. 4
0
 public Diagnostic(ISpecification <Type> errorSpec)
 {
     getTypeErrorSpec = errorSpec.@Get(x => () => x, getTypeErrorSpec);
 }