namespace ZeroFramework.DeviceCenter.Infrastructure.Idempotency { public interface IRequestManager { Task ExistAsync(string commandId); Task CreateRequestForCommandAsync(string commandId); } }