Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public BaseDoneCommand(string cmdName, string tagName, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base(cmdName, tagName, console, note, gConfig)
 {
 }
Exemplo n.º 4
0
 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)
 {
 }
Exemplo n.º 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)
 {
 }
Exemplo n.º 6
0
 public DayCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("day", gConfig.GetTagForToday(), console, note, gConfig)
 {
 }
Exemplo n.º 7
0
 public NextActionCreateCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("na+", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Exemplo n.º 8
0
 public DayCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("day", gConfig.GetTagForToday(), console, note, gConfig)
 {
 }
Exemplo n.º 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)
 {
 }
Exemplo n.º 10
0
 public ImportCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("import", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Exemplo n.º 11
0
 public BaseDeleteCommand(string cmdName, string tagName, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base(cmdName, tagName, console, note, gConfig)
 {
 }
Exemplo n.º 12
0
 public NextActionAppendCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("na=", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Exemplo n.º 13
0
 public ImportCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("import", gConfig.NextActionTagName, console, note, gConfig)
 {
 }
Exemplo n.º 14
0
 public TodayCommand(INextActionList naList, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("today", "", console, note, gConfig)
 {
     this.naList = naList;
 }
Exemplo n.º 15
0
 public SetupCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("setup", "", console, note, gConfig)
 {
 }
Exemplo n.º 16
0
 public AgendaDeleteCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("a--", gConfig.AgendaTagName, console, note, gConfig)
 {
 }
Exemplo n.º 17
0
 public AgendaDoneCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("a-", gConfig.AgendaTagName, console, note, gConfig)
 {
 }
Exemplo n.º 18
0
 public SetupCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("setup", "", console, note, gConfig)
 {
 }
Exemplo n.º 19
0
 public WaitingOnTagCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("w==", gConfig.WaitingOnTagName, console, note, gConfig)
 {
 }
Exemplo n.º 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;
 }
Exemplo n.º 21
0
 public WaitingOnCreateCommand(IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("w+", gConfig.WaitingOnTagName, console, note, gConfig)
 {
 }
Exemplo n.º 22
0
 public TodayCommand(INextActionList naList, IConsoleFacade console, ICachedNoteStore note, IGTDConfiguration gConfig)
     : base("today", "", console, note, gConfig)
 {
     this.naList = naList;
 }