using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace DotnetToLambda.Core.Models { public interface IBookingRepository { Task Add(Booking booking); Task> ListForCustomer(string customerId); Task Retrieve(string bookingId); Task Update(Booking booking); } }