drinkMe/drinkMe/Client/Services/Interfaces/IPriceService.cs

14 lines
318 B
C#

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<DiscountCodeViewModel> discountCodes, List<DrinkViewModel> drinks);
}
}