using TIAM.Entities.Transfers; namespace TIAM.Services.Interfaces; public interface ITransferApiControllerClient : ITransferApiControllerCommon { Task GetTransferDestinationsAsync(List intoDestinationList, Action? callback = null); Task GetPublicTransferDestinationsAsync(List intoDestinationList, Guid includeProductId, Action? callback = null); }