Retail_manager/RMDataManager/Controllers/ProductController.cs
s459315 57d2ab60a7 Created Sales View and Database prodecures for displaying items.
Created and binded a View, created logic behind Cart Product Model
2022-07-23 17:09:13 +02:00

23 lines
479 B
C#

using RMDataManagerLibrary.DataAcccess;
using RMDataManagerLibrary.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
namespace RMDataManager.Controllers
{
[Authorize]
public class ProductController : ApiController
{
public List<ProductModel> Get()
{
ProductData data = new ProductData();
return data.GetProducts();
}
}
}