namespace DoliMiddlewareApi.Services.Clients; public interface IDolibarrApiClient { Task GetResourceAsync(string endpoint) where T : class; Task> GetCollectionAsync(string endpoint) where T : class; Task PostAsync(string endpoint, object requestBody); Task PutAsync(string endpoint, object requestBody); Task DeleteAsync(string endpoint); Task GetAsyncRaw(string endpoint); }