コード例 #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
ファイル: WorkbanchState.cs プロジェクト: artbiel/Client
 public FetchWorkbanchItemsActionEffect(WorkbanchService workbanchService)
 {
     _workbanchService = workbanchService;
 }
コード例 #7
0
ファイル: WorkbanchState.cs プロジェクト: artbiel/Client
 public ForkItemToWorkbanchActionEffect(WorkbanchService workbanchService)
 {
     _workbanchService = workbanchService;
 }
コード例 #8
0
ファイル: WorkbanchState.cs プロジェクト: artbiel/Client
 public DeleteWorkBanchItemActionEffect(WorkbanchService workbanchService, IState <WorkbanchState> workbanchState, IMBToastService toastService)
 {
     _workbanchService = workbanchService;
     _workbanchState   = workbanchState;
     _toastService     = toastService;
 }