In the business logic layer of our ASP.NET Core application, we're sending a POST-Request to an external API using System.Net.Http.HttpClient.
Is the business logic layer considered the wrong place to use classes from System.Net and System.Net.Http? If yes, which layer would be the correct place considering we have a 3-tier architecture (web, business logic, data access)?