Esempio n. 1
0
 public MoveWorkbanchCourseRecordActionEffect(WorkbanchService workbanchService,
                                              IState <WorkbanchCourseState> workbanchCourseState, IMBToastService toastService)
 {
     _workbanchService     = workbanchService;
     _workbanchCourseState = workbanchCourseState;
     _toastService         = toastService;
 }
Esempio n. 2
0
 public EditWorkbanchCourseInfoActionEffect(WorkbanchService workbanchService,
                                            IState <WorkbanchCourseState> workbanchCourseState, IMapper mapper, IMBToastService toastService)
 {
     _workbanchService     = workbanchService;
     _workbanchCourseState = workbanchCourseState;
     _toastService         = toastService;
     _mapper = mapper;
 }
Esempio n. 3
0
 public EditWorkbanchArticleTitleActionEffect(WorkbanchService workbanchService, IState <WorkbanchArticleState> workbanchArticleState, IMBToastService toastService)
 {
     _workbanchService      = workbanchService;
     _workbanchArticleState = workbanchArticleState;
     _toastService          = toastService;
 }
Esempio n. 4
0
 public FetchWorkbanchArticleActionEffect(WorkbanchService workbanchService)
 {
     _workbanchService = workbanchService;
 }
Esempio n. 5
0
 public FecthWorkbanchCourseActionEffect(WorkbanchService workbanchService)
 {
     _workbanchService = workbanchService;
 }
Esempio n. 6
0
 public FetchWorkbanchItemsActionEffect(WorkbanchService workbanchService)
 {
     _workbanchService = workbanchService;
 }
Esempio n. 7
0
 public ForkItemToWorkbanchActionEffect(WorkbanchService workbanchService)
 {
     _workbanchService = workbanchService;
 }
Esempio n. 8
0
 public DeleteWorkBanchItemActionEffect(WorkbanchService workbanchService, IState <WorkbanchState> workbanchState, IMBToastService toastService)
 {
     _workbanchService = workbanchService;
     _workbanchState   = workbanchState;
     _toastService     = toastService;
 }