Error while calling the API controller methods:
Solution:
Change your base class methods from public to protected so that they are not exposed to API endpoints:
Replace: protected async Task<int> GetYourMethod() with this:
Error while calling the API controller methods:
Solution:
Change your base class methods from public to protected so that they are not exposed to API endpoints:
Replace: protected async Task<int> GetYourMethod() with this: