using System;
using System.Collections.Generic;
 
namespace ACG6MvcEFWebAPIApi.EF
{
    internal class Product
    {
        internal Product()
        {
        }
 
        internal int ProductID { getset; } 
        internal string ProductName { getset; } 
        internal int? SupplierID { getset; } 
        internal int? CategoryID { getset; } 
        internal string QuantityPerUnit { getset; } 
        internal decimal? UnitPrice { getset; } 
        internal Int16? UnitsInStock { getset; } 
        internal Int16? UnitsOnOrder { getset; } 
        internal Int16? ReorderLevel { getset; } 
        internal bool Discontinued { getset; } 
 
        internal virtual Supplier Supplier { getset; }
        internal virtual Category Category { getset; }
    }
}