57d2ab60a7
Created and binded a View, created logic behind Cart Product Model
11 lines
236 B
C#
11 lines
236 B
C#
using RMWPFInterfaceLibrary.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RMWPFInterfaceLibrary.Api
|
|
{
|
|
public interface IProductEndPoint
|
|
{
|
|
Task<List<ProductModel>> GetAll();
|
|
}
|
|
} |