public void TestInitialize()
 {
     // Note: I am not using a DI container to simplify things
     options = new TodoItemRepositoryOptions();
     sut     = new TodoItemRepository(options);
 }
 public TodoItemRepository(ITodoItemRepositoryOptions options)
 {
     this.options = options ?? throw new ArgumentNullException("options");
 }