public override void Execute(object parameter)
        {
            UpdateWrapCommand updateWrapCommand = new UpdateWrapCommand
            {
                System = true,
                Project = false
            };

            ThreadPool.QueueUserWorkItem(o => CommandHelper.ExecuteAndSend(updateWrapCommand));
        }
 public system_flag_specified()
 {
     CommandInstance = new UpdateWrapCommand() { System = true };
 }
Example #3
0
 public defaults()
 {
     CommandInstance = new UpdateWrapCommand();
 }
 public project_and_system_flag_specified()
 {
     CommandInstance = new UpdateWrapCommand() { System = true, Project=true };
 }
 public project_flag_specified()
 {
     CommandInstance = new UpdateWrapCommand() { Project = true};
 }