using System.Threading.Tasks; using BTCPayServer.Client; using Microsoft.AspNetCore.Http; namespace BTCPayServer.Abstractions.Contracts { public interface IBTCPayServerClientFactory { Task Create(string userId, params string[] storeIds); Task Create(string userId, string[] storeIds, HttpContext httpRequest); } }