public TodoController()

in webapi/Controllers/TodoController.cs [16:20]


        public TodoController(IOptions<Parameters> options)
        {
            Console.WriteLine("ToDo Controller!");
            _todoContext = new TodoContext(options);
        }