예제 #1
0
 public system_flag_specified()
 {
     CommandInstance = new UpdateWrapCommand()
     {
         System = true
     };
 }
 public project_and_system_flag_specified()
 {
     CommandInstance = new UpdateWrapCommand()
     {
         System = true, Project = true
     };
 }
예제 #3
0
 public project_flag_specified()
 {
     CommandInstance = new UpdateWrapCommand()
     {
         Project = true
     };
 }
예제 #4
0
 public defaults()
 {
     CommandInstance = new UpdateWrapCommand();
 }