Hi @BCEBOLOD,
It seems your application hasn't fully enabled support for MVC controllers. You need this line in your Program.cs
app.MapControllers();
You can put it just before app.Run();
Hi @BCEBOLOD,
It seems your application hasn't fully enabled support for MVC controllers. You need this line in your Program.cs
app.MapControllers();
You can put it just before app.Run();