public TodoWidgetViewModel(IJsonStorageService storageService)
 {
     storageController = storageService.CreateControllerForFile <TodoModel>("todolist.txt");
 }
 public NotesWidgetViewModel(IJsonStorageService storageService)
 {
     storageController = storageService.CreateControllerForFile <NotesModel>("notes.txt");
 }