public UnitOfWork(ToDoAppEntities context) { _context = context; userRepository = new UserRepository(); toDoRepository = new ToDoRepository(); itemRepository = new ItemRepository(); }