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