Retail_manager/RMWPFInterfaceLibrary/Api/ISaleEndPoint.cs
s459315 f0bea75284 Add Saving Cart to the DB
All the changes necessary to save shopping cart to DB
2022-07-25 17:02:36 +02:00

10 lines
195 B
C#

using RMWPFInterfaceLibrary.Models;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Api
{
public interface ISaleEndPoint
{
Task PostSale(SaleModel sale);
}
}