12 lines
330 B
C#
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);
|
|
}
|
|
} |