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);
|
|||
|
}
|
|||
|
}
|