9 lines
403 B
C#
9 lines
403 B
C#
using TIAM.Entities.Transfers;
|
|
|
|
namespace TIAM.Services.Interfaces;
|
|
|
|
public interface ITransferApiControllerClient : ITransferApiControllerCommon
|
|
{
|
|
Task GetTransferDestinationsAsync(List<TransferDestination> intoDestinationList, Action? callback = null);
|
|
Task GetPublicTransferDestinationsAsync(List<TransferDestination> intoDestinationList, Guid includeProductId, Action? callback = null);
|
|
} |