f0bea75284
All the changes necessary to save shopping cart to DB
10 lines
195 B
C#
10 lines
195 B
C#
using RMWPFInterfaceLibrary.Models;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RMWPFInterfaceLibrary.Api
|
|
{
|
|
public interface ISaleEndPoint
|
|
{
|
|
Task PostSale(SaleModel sale);
|
|
}
|
|
} |