コード例 #1
0
 public ListCommand(
     IBraindumpService braindumpService,
     IConsole console,
     IGroupParser groupParser)
 {
     this.braindumpService = braindumpService;
     this.console          = console;
     this.groupParser      = groupParser;
 }
コード例 #2
0
 public ReminderListCommand(
     IBraindumpService braindumpService,
     IConsole console,
     IReminderParser reminderParser)
 {
     this.braindumpService = braindumpService;
     this.console          = console;
     this.reminderParser   = reminderParser;
 }
コード例 #3
0
ファイル: AddCommand.cs プロジェクト: dzoech/Nudelsieb
 public AddCommand(
     IBraindumpService braindumpService,
     IConsole console,
     IReminderParser reminderParser,
     IGroupParser groupParser)
 {
     this.braindumpService = braindumpService;
     this.console          = console;
     this.reminderParser   = reminderParser;
     this.groupParser      = groupParser;
 }