Retail_manager/RMWPFInterfaceLibrary/Api/IProductEndPoint.cs

11 lines
236 B
C#
Raw Normal View History

using RMWPFInterfaceLibrary.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Api
{
public interface IProductEndPoint
{
Task<List<ProductModel>> GetAll();
}
}