Exemplo n.º 1
0
 public MoveWorkbanchCourseRecordActionEffect(WorkbanchService workbanchService,
                                              IState <WorkbanchCourseState> workbanchCourseState, IMBToastService toastService)
 {
     _workbanchService     = workbanchService;
     _workbanchCourseState = workbanchCourseState;
     _toastService         = toastService;
 }
Exemplo n.º 2
0
 public EditWorkbanchCourseInfoActionEffect(WorkbanchService workbanchService,
                                            IState <WorkbanchCourseState> workbanchCourseState, IMapper mapper, IMBToastService toastService)
 {
     _workbanchService     = workbanchService;
     _workbanchCourseState = workbanchCourseState;
     _toastService         = toastService;
     _mapper = mapper;
 }
Exemplo n.º 3
0
 public EditWorkbanchArticleTitleActionEffect(WorkbanchService workbanchService, IState <WorkbanchArticleState> workbanchArticleState, IMBToastService toastService)
 {
     _workbanchService      = workbanchService;
     _workbanchArticleState = workbanchArticleState;
     _toastService          = toastService;
 }
Exemplo n.º 4
0
 public AddArticleCommitActionEffect(ArticleService articleService, IMBToastService toastService)
 {
     _articleService = articleService;
     _toastService   = toastService;
 }
Exemplo n.º 5
0
 public DeleteWorkBanchItemActionEffect(WorkbanchService workbanchService, IState <WorkbanchState> workbanchState, IMBToastService toastService)
 {
     _workbanchService = workbanchService;
     _workbanchState   = workbanchState;
     _toastService     = toastService;
 }