Beispiel #1
0
 public BaseCommand(string cmdName, string tagName, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
 {
     this.console = console;
     this.gConfig = gConfig;
     this.note = note;
     this.cmdName = cmdName;
     this.tagName = tagName;
 }
Beispiel #2
0
 public BaseCommand(string cmdName, string tagName, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
 {
     this.console = console;
     this.gConfig = gConfig;
     this.note    = note;
     this.cmdName = cmdName;
     this.tagName = tagName;
 }
Beispiel #3
0
 public BaseDoneCommand(string cmdName, string tagName, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base(cmdName, tagName, console, note, gConfig)
 {
 }
 public WaitingOnBrokerCommand(IWaitingOnList list, IWaitingOnCreate create, IWaitingOnAppend append, IWaitingOnTag tag, IWaitingOnDone done, IWaitingOnDelete delete, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("wait", gConfig.WaitingOnTagName, list, create, append, tag, done, delete, console, note, gConfig)
 {
 }
Beispiel #5
0
 public AgendaBrokerCommand(IAgendaList list, IAgendaCreate create, IAgendaAppend append, IAgendaTag tag, IAgendaDone done, IAgendaDelete delete, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("agenda", gConfig.AgendaTagName, list, create, append, tag, done, delete, console, note, gConfig)
 {
 }
Beispiel #6
0
 public DayCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("day", gConfig.GetTagForToday(), console, note, gConfig)
 {
 }
 public NextActionCreateCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("na+", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Beispiel #8
0
 public DayCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("day", gConfig.GetTagForToday(), console, note, gConfig)
 {
 }
Beispiel #9
0
 public NextActionBrokerCommand(INextActionList list, INextActionCreate create, INextActionAppend append, INextActionTag tag, INextActionDone done, INextActionDelete delete, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("na", gConfig.NextActionTagName, list, create, append, tag, done, delete, console, note, gConfig)
 {
 }
Beispiel #10
0
 public ImportCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("import", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Beispiel #11
0
 public BaseDeleteCommand(string cmdName, string tagName, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base(cmdName, tagName, console, note, gConfig)
 {
 }
 public NextActionAppendCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("na=", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Beispiel #13
0
 public ImportCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("import", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Beispiel #14
0
 public TodayCommand(INextActionList naList, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("today", "", console, note, gConfig)
 {
     this.naList = naList;
 }
Beispiel #15
0
 public SetupCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("setup", "", console, note, gConfig)
 {
 }
Beispiel #16
0
 public AgendaDeleteCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("a--", gConfig.AgendaTagName, console, note, gConfig)
 {
 }
Beispiel #17
0
 public AgendaDoneCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("a-", gConfig.AgendaTagName, console, note, gConfig)
 {
 }
Beispiel #18
0
 public SetupCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("setup", "", console, note, gConfig)
 {
 }
Beispiel #19
0
 public WaitingOnTagCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("w==", gConfig.WaitingOnTagName, console, note, gConfig)
 {
 }
Beispiel #20
0
 public BaseBrokerCommand(string cmdName, string tagName, TList list, TCreate create, TAppend append, TTag tag, TDone done, TDelete delete, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base(cmdName, tagName, console, note, gConfig)
 {
     this.list   = list;
     this.create = create;
     this.append = append;
     this.tag    = tag;
     this.done   = done;
     this.delete = delete;
 }
 public WaitingOnCreateCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("w+", gConfig.WaitingOnTagName, console, note, gConfig)
 {
 }
Beispiel #22
0
 public TodayCommand(INextActionList naList, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("today", "", console, note, gConfig)
 {
     this.naList = naList;
 }