using System.Threading.Tasks; namespace DotnetToLambda.Core.Services { public interface ICustomerService { Task CustomerExists(string customerIdentifier); } }