hello-shop/src/HelloShop.OrderingService/Services/IClientRequestManager.cs
2024-09-06 22:42:27 +08:00

12 lines
330 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.OrderingService.Services
{
public interface IClientRequestManager
{
Task<bool> ExistAsync(Guid id);
Task CreateRequestForCommandAsync<T>(Guid id);
}
}