Ejemplo n.º 1
0
 public ServiceContiner()
 {
     TodoActions      = new();
     TimeActions      = new();
     GroupActions     = new();
     MemoryActions    = new();
     LocationActions  = new();
     AssistantActions = new();
     AssistantActions.Ini(false);
     TimeActions.Ini(false);
     TodoActions.Ini(false);
     GroupActions.Ini(false);
     MemoryActions.Ini(false);
     LocationActions.Ini(false);
 }
Ejemplo n.º 2
0
 public TodoListPageViewModel(TodoStore todoStore, TodoActions todoActions)
 {
     _todoStore            = todoStore;
     _todoActions          = todoActions;
     _todoStore.OnEmitted += TodoStore_OnEmitted;
 }