Files
StockRepository/RepositoryPattern/Product.cs
2021-01-09 16:41:32 +01:00

18 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RepositoryPattern
{
public class Product
{
public string ProductId { get; set; }
public string ProductName { get; set; }
public decimal UnitPrice { get; set; }
public string Barcode { get; set; }
public int UnitsInStock { get; set; }
}
}