Example #1
0
 internal Method(MethodBase methodBase, UtilityFactory factory)
 {
     if (methodBase == null)
         throw new ArgumentNullException("methodBase");
     this.methodBase = methodBase;
     this.factory = factory;
 }
Example #2
0
 internal CodeDetails(MethodBase methodBase, UtilityFactory factory)
 {
     if (methodBase == null)
     {
         throw new ArgumentNullException("methodBase");
     }
     this.methodBase = methodBase;
     this.factory    = factory;
 }
Example #3
0
 public CoreFactory()
 {
     UtilityFactory = new UtilityFactory();
 }
Example #4
0
 internal MethodRetriever(UtilityFactory factory)
 {
     this.factory = factory;
 }
Example #5
0
 internal MethodRetriever(UtilityFactory factory)
 {
     this.factory = factory;
 }
Example #6
0
		public StatsCascader(UtilityFactory factory)
		{
			outcomeAggregator = factory.CreateOutcomeAggregator();
		}