drinkMe/drinkMe/Server/Services/Interfaces/IPaymentService.cs

14 lines
270 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.Server.Services.Interfaces
{
public interface IPaymentService
{
Task<bool> Pay(PurchaseCart purchaseCart);
}
}