Exemplo 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.";
 }
Exemplo 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.";
 }
Exemplo 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.";
 }
Exemplo 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.";
 }
Exemplo 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.";
 }
Exemplo 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.";
 }
Exemplo n.º 7
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.";
 }
Exemplo 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.";
 }
Exemplo 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.";
 }
Exemplo 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;
        }
Exemplo 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;
        }