/// <summary> /// Generates and loads all the parameters required for the given contract. /// </summary> /// <param name="contract"></param> /// <returns>Whether the generation was successful.</returns> public bool GenerateBehaviours(ConfiguredContract contract) { return(BehaviourFactory.GenerateBehaviours(contract, behaviourFactories)); }
/* * Generates and loads all the parameters required for the given contract. */ public void GenerateBehaviours(ConfiguredContract contract) { BehaviourFactory.GenerateBehaviours(contract, behaviourFactories); }