using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

 

namespace GridViews

{

    public class Product

    {

        private String productID;

        private String description;

        private double price;

        private int qoh;

 

        public String ProductID

        {

            get { return productID; }

            set { productID = value; }

        }

 

        public String Description

        {

            get { return description; }

            set { description = value; }

        }

 

        public double Price

        {

            get { return price; }

            set { price = value; }

        }

 

        public int QOH

        {

            get { return qoh; }

            set { qoh = value; }

        }

 

    }

}