using AyCode.Services.SignalRs; 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); Task GetTransferToDriversByProductIdAsync(Guid productId, Func?>, Task> responseCallback); }