コード例 #1
0
ファイル: CommandMapper.cs プロジェクト: xsjames/SysCommand
 /// <summary>
 /// Initialize the mapper
 /// </summary>
 /// <param name="argumentMapper">Mapper of arguments</param>
 /// <param name="actionMapper">Mapper of actions</param>
 public CommandMapper(ArgumentMapper argumentMapper, ActionMapper actionMapper)
 {
     this.ArgumentMapper = argumentMapper;
     this.ActionMapper   = actionMapper;
 }
コード例 #2
0
ファイル: ActionMapper.cs プロジェクト: xsjames/SysCommand
 /// <summary>
 /// Initialize the mapper
 /// </summary>
 /// <param name="argumentMapper">Mapper of arguments</param>
 public ActionMapper(ArgumentMapper argumentMapper)
 {
     this.argumentMapper = argumentMapper;
 }