Esempio n. 1
0
 public AddCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter  = converter;
     this.textWriter = textWriter;
     this.client     = client;
     Description     = "Adds new task to server.";
 }
Esempio n. 2
0
 public ClearDateCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter  = converter;
     this.textWriter = textWriter;
     this.client     = client;
     Description     = "Clears due date for specified task by ID.";
 }
Esempio n. 3
0
 public CompleteCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter  = converter;
     this.textWriter = textWriter;
     this.client     = client;
     Description     = "Mark task by ID as completed.";
 }
Esempio n. 4
0
 public SetDateCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter = converter;
     this.textWriter = textWriter;
     this.client = client;
     Description = "Sets due date for task, specified by ID.";
 }
Esempio n. 5
0
 public CompleteCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter = converter;
     this.textWriter = textWriter;
     this.client = client;
     Description = "Mark task by ID as completed.";
 }
Esempio n. 6
0
 public SetDateCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter  = converter;
     this.textWriter = textWriter;
     this.client     = client;
     Description     = "Sets due date for task, specified by ID.";
 }
 public ClearDateCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter = converter;
     this.textWriter = textWriter;
     this.client = client;
     Description = "Clears due date for specified task by ID.";
 }
Esempio n. 8
0
 public AddCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter = converter;
     this.textWriter = textWriter;
     this.client = client;
     Description = "Adds new task to server.";
 }
Esempio n. 9
0
 public RenameCommand(TaskArgsConverter converter, TextWriter textWriter, IClient client)
 {
     this.converter  = converter;
     this.textWriter = textWriter;
     this.client     = client;
     Description     = "Renames task, specified by ID.";
 }
Esempio n. 10
0
        public ListCommand(TaskArgsConverter converter, TextWriter textWriter,
            IClient client, ITaskFormatterFactory factory)
        {
            Description = "Displays list of all tasks or single task, specified by ID.";
            this.converter = converter;
            this.textWriter = textWriter;

            this.client = client;
            this.factory = factory;
        }
Esempio n. 11
0
        public ListCommand(TaskArgsConverter converter, TextWriter textWriter,
                           IClient client, ITaskFormatterFactory factory)
        {
            Description     = "Displays list of all tasks or single task, specified by ID.";
            this.converter  = converter;
            this.textWriter = textWriter;

            this.client  = client;
            this.factory = factory;
        }