예제 #1
0
 public WorkflowStepController(IWorkflowStepService serv,
                               IGrupoAprovadorUsuarioService servGAU,
                               IStepService servStep)
 {
     _serv     = serv;
     _servGAU  = servGAU;
     _servStep = servStep;
 }
예제 #2
0
 public WorkflowService(IWorkflowRepository repo,
                        IWorkflowStepService wfsServ,
                        IStepService stepServ,
                        IStatusService statusServ,
                        IGrupoAprovadorService gaServ,
                        IGrupoAprovadorUsuarioService gauServ,
                        IUsuarioService usuarioServ)
 {
     _repo        = repo;
     _wfsServ     = wfsServ;
     _stepServ    = stepServ;
     _statusServ  = statusServ;
     _gaServ      = gaServ;
     _gauServ     = gauServ;
     _usuarioServ = usuarioServ;
 }
예제 #3
0
 public WorkflowStepController(
     IAppUserService AppUserService,
     IOrganizationService OrganizationService,
     IRoleService RoleService,
     IWorkflowDefinitionService WorkflowDefinitionService,
     IWorkflowStepService WorkflowStepService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.AppUserService            = AppUserService;
     this.OrganizationService       = OrganizationService;
     this.RoleService               = RoleService;
     this.WorkflowDefinitionService = WorkflowDefinitionService;
     this.WorkflowStepService       = WorkflowStepService;
     this.CurrentContext            = CurrentContext;
 }
 public WorkflowController(IWorkflowService serv, IWorkflowStepService servWorkflowStep)
 {
     _serv             = serv;
     _servWorkflowStep = servWorkflowStep;
 }