public async Task <ExistResult> ExistCustomerAsync(string SessionKey, int CustomerId) { return(await authorizationProcessor.DoAuthorizeAsync(SessionKey, async token => { var result = await receiptProcessor.ExistCustomerAsync(CustomerId, token); return new ExistResult { ProcessResult = new ProcessResult { Result = true }, Exist = result, }; }, logger)); }
public async Task <bool> ExistCustomer([FromBody] int CustomerId, CancellationToken token) => await receiptProcessor.ExistCustomerAsync(CustomerId, token);