Refactor entities into domain project
This commit is contained in:
17
StockDomain/Product.cs
Normal file
17
StockDomain/Product.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StockDomain
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user