public async Task <ExistResult> ExistCustomerAsync(string SessionKey, int CustomerId) { return(await authorizationProcessor.DoAuthorizeAsync(SessionKey, async token => { var result = await billingProcessor.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 billingProcessor.ExistCustomerAsync(customerId, token);