using drinkMe.Shared; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace drinkMe.Client.Services.Interfaces { public interface IPriceService { float GetTotalPrice(List discountCodes, List drinks); } }