ProjGatherCalcData.pas 287 B

1234567891011121314151617
  1. unit ProjGatherCalcData;
  2. interface
  3. type
  4. Tpg_Calc = class
  5. private
  6. FQuantity: Double;
  7. FTotalPrice: Double;
  8. public
  9. property Quantity: Double read FQuantity write FQuantity;
  10. property TotalPrice: Double read FTotalPrice write FTotalPrice;
  11. end;
  12. implementation
  13. end.