Exemplo n.º 1
0
 protected BaseMacroExecute(IDataEngine dataengine, IMacroFactory macroFactory, IOutputEngine outputengine, IProject project)
 {
     Engine         = dataengine;
     MacroFactory   = macroFactory;
     OutputEngine   = outputengine;
     CurrentProject = project;
 }
Exemplo n.º 2
0
 public AutoImplement(IDataEngine dataengine, IMacroFactory macroFactory, IOutputEngine outputengine, IProject project, IConfiguration configuration) : base(dataengine, macroFactory, outputengine, project, configuration)
 {
 }
Exemplo n.º 3
0
 protected BaseMacroExecuteInterface(IDataEngine dataengine, IMacroFactory macroFactory, IOutputEngine outputengine, IProject project, IConfiguration configuration) : base(dataengine, macroFactory, outputengine, project, configuration)
 {
 }
Exemplo n.º 4
0
 public BaseDataEngine(IMacroFactory macrofactory, IProject currentproject)
 {
     MacroFactory   = macrofactory;
     CurrentProject = currentproject;
 }
Exemplo n.º 5
0
 public MacroRecordSession(IMacroFactory macroFactory, IMacroRecorder recorder)
 {
     _macroFactory = macroFactory;
     _recorder     = recorder;
 }
Exemplo n.º 6
0
 public MacroRecordSessionFactory(IMacroFactory macroFactory)
 {
     _macroFactory = macroFactory;
 }