コード例 #1
0
 public TasksModule(AppValueProvider appValue)
 {
     this.appValue = appValue;
     DataAgent = new DataAgent(appValue);
     Name = "Tasks";
     Commands = new List<Logic.Commands.ICommand>(new[]{
         new TasksCommand(DataAgent)
     });
 }
コード例 #2
0
 public TasksCommand(DataAgent data)
 {
     this.data = data;
 }