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

14 lines
318 B
C#
Raw Normal View History

2021-04-26 15:35:44 +02:00
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);
}
}