예제 #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 AddArticleCommitActionEffect(ArticleService articleService, IMBToastService toastService)
 {
     _articleService = articleService;
     _toastService   = toastService;
 }
예제 #5
0
 public DeleteWorkBanchItemActionEffect(WorkbanchService workbanchService, IState <WorkbanchState> workbanchState, IMBToastService toastService)
 {
     _workbanchService = workbanchService;
     _workbanchState   = workbanchState;
     _toastService     = toastService;
 }