Пример #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
 public AddCommand(
     IBraindumpService braindumpService,
     IConsole console,
     IReminderParser reminderParser,
     IGroupParser groupParser)
 {
     this.braindumpService = braindumpService;
     this.console          = console;
     this.reminderParser   = reminderParser;
     this.groupParser      = groupParser;
 }