Terminology
Term | Definition |
---|---|
Controller | A special class that handles endpoint requests. Indicates to .NET which URL s this code handles and which combination of URL and VERB should be handled by what method. |
ControllerBase | Parent class of the controller. Much of the common code is created for us and implemented in this class. |