Add project files.

This commit is contained in:
2021-01-09 16:41:32 +01:00
parent 6cd1138b6b
commit 105fe382bb
11 changed files with 334 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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; }
}
}