13 lines
280 B
C#
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);
|
|
}
|
|
}
|