예제 #1
0
        public LotView(Lot lot)
        {
            //This represents if the lot is being provided
            InitializeComponent();
            mLot = lot;
            this.Name = "LotView" + mLot.GetLotID();
            lockForm();
            populateFields();
            isNew = false;

            totalPortions[0] = mLot.GetRoughInValue();
            totalPortions[1] = mLot.GetServiceValue();
            totalPortions[2] = mLot.GetFinalValue();

        }