I'm creating a Task List
I'm creating a Task List
As I mentioned in the comments, if you intend to use generics, the declaration of the method is wrong, just missing the generic type specification.
Change signature to the following that should resolve:
public async Task<List<TModel>>MetodoPostTeste<TModel>(string RouteCommand, params object[] args)
{
...
}
I hope I have helped.