I am trying to find the routing configuration for apicontroller having multiple get methods.
The controller class has 3 methods:
Public Function GetAllProducts() As IEnumerable(Of Product)
Public Function GetProductById(prodid As Integer) As Product
Public Function GetProductByCategory(categoryName As String) As Product
Please suggest the routing configuration needed for all the 3 methods.