Exemple #1
0
 public TimeBlocksModel(ITaskListStore taskListStore, IEntityCreator <TimeBlock> entityCreator)
     : base(taskListStore.TimeBlocks, entityCreator)
 {
 }
Exemple #2
0
 public GroupsModel(ITaskListStore taskListStore, IEntityCreator <Group> entityCreator)
     : base(taskListStore.Groups, entityCreator)
 {
 }
Exemple #3
0
        void LoadTaskList()
        {
            ITaskListStore taskListStore = container.Resolve <ITaskListStore>();

            taskListStore.Load();
        }
Exemple #4
0
        void SaveTaskList()
        {
            ITaskListStore taskListStore = container.Resolve <ITaskListStore>();

            taskListStore.Save();
        }
Exemple #5
0
 public TasksModel(ITaskListStore taskListStore, IEntityCreator <Task> entityCreator)
     : base(taskListStore.Tasks, entityCreator)
 {
 }