Esempio n. 1
0
 public static IEnumerable<Method> ForFetcherInterfaceUpcasts(OdcmClass odcmClass)
 {
     return odcmClass.NestedDerivedTypes()
             .Select(dr => new FetcherUpcastMethod(odcmClass, dr));
 }
Esempio n. 2
0
 internal static IEnumerable<Method> ForConcreteUpcasts(OdcmClass odcmClass)
 {
     return odcmClass.NestedDerivedTypes()
             .Select(dr => new ConcreteUpcastMethod(odcmClass, dr));
 }