Beispiel #1
0
        public TaskContext(Enumerators.Action action, Enumerators.WorkFlow workFlow, Settings settings)
        {
            Action        = action;
            WorkFlow      = workFlow;
            ProjectFiles  = new List <ProjectFile>();
            DateTimeStamp = DateTime.UtcNow;

            ExportOptions  = settings.ExportOptions;
            ImportOptions  = settings.ImportOptions;
            ConvertOptions = settings.ConvertOptions;

            Owner = Enumerators.Controller.None;
        }
Beispiel #2
0
 public WizardService(Enumerators.Action action, Enumerators.WorkFlow workFlow, PathInfo pathInfo, CustomerProvider customerProvider,
                      ImageService imageService, Controllers controllers, SegmentBuilder segmentBuilder, Settings settings,
                      IDialogService dialogService, ProjectAutomationService projectAutomationService)
 {
     _action                   = action;
     _workFlow                 = workFlow;
     _pathInfo                 = pathInfo;
     _customerProvider         = customerProvider;
     _imageService             = imageService;
     _controllers              = controllers;
     _dialogService            = dialogService;
     _segmentBuilder           = segmentBuilder;
     _settings                 = settings;
     _projectAutomationService = projectAutomationService;
 }
Beispiel #3
0
 public TaskResult(Enumerators.Action action, Enumerators.WorkFlow workFlow)
 {
     Action   = action;
     WorkFlow = workFlow;
 }