public MoveWorkbanchCourseRecordActionEffect(WorkbanchService workbanchService, IState <WorkbanchCourseState> workbanchCourseState, IMBToastService toastService) { _workbanchService = workbanchService; _workbanchCourseState = workbanchCourseState; _toastService = toastService; }
public EditWorkbanchCourseInfoActionEffect(WorkbanchService workbanchService, IState <WorkbanchCourseState> workbanchCourseState, IMapper mapper, IMBToastService toastService) { _workbanchService = workbanchService; _workbanchCourseState = workbanchCourseState; _toastService = toastService; _mapper = mapper; }
public EditWorkbanchArticleTitleActionEffect(WorkbanchService workbanchService, IState <WorkbanchArticleState> workbanchArticleState, IMBToastService toastService) { _workbanchService = workbanchService; _workbanchArticleState = workbanchArticleState; _toastService = toastService; }
public FetchWorkbanchArticleActionEffect(WorkbanchService workbanchService) { _workbanchService = workbanchService; }
public FecthWorkbanchCourseActionEffect(WorkbanchService workbanchService) { _workbanchService = workbanchService; }
public FetchWorkbanchItemsActionEffect(WorkbanchService workbanchService) { _workbanchService = workbanchService; }
public ForkItemToWorkbanchActionEffect(WorkbanchService workbanchService) { _workbanchService = workbanchService; }
public DeleteWorkBanchItemActionEffect(WorkbanchService workbanchService, IState <WorkbanchState> workbanchState, IMBToastService toastService) { _workbanchService = workbanchService; _workbanchState = workbanchState; _toastService = toastService; }