root/UnityWeb/UnityWeb/Domain/Business/Product.cs

5556
4
    {
4
    {
5
        public int Id { get; set; }
5
        public int Id { get; set; }
6
        public string ProductName { get; set; }
6
        public string ProductName { get; set; }
7
        public Supplier Supplier { get; set; }
7
        public virtual Supplier Supplier { get; set; }
8
        public Category Category { get; set; }
8
        public virtual Category Category { get; set; }
9
        public string QuantityPerUnit { get; set; }
9
        public string QuantityPerUnit { get; set; }
10
        public double UnitPrice { get; set; }
10
        public double UnitPrice { get; set; }
11
        public int UnitsInStock { get; set; }
11
        public int UnitsInStock { get; set; }