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