Unai Zorrilla Castro 4ef6b63913 Review on 17/04/2017
2017-04-17 12:28:12 +02:00

13 lines
280 B
C#

using System;
using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.Services.Ordering.Infrastructure.Idempotency
{
public interface IRequestManager
{
Task<bool> ExistAsync(Guid id);
Task CreateRequestForCommandAsync<T>(Guid id);
}
}