Vente.cs 606 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Fuel01
  4. {
  5. public class Vente
  6. {
  7. public string epreuve_vt { get; set; } = string.Empty;
  8. public string station_vt { get; set; }
  9. public String vehi_vt { get; set; }
  10. public string prod_vt { get; set; }
  11. public DateTime date_vt { get; set; }
  12. public float qtt_vt { get; set; }
  13. public float pu_vt { get; set; }
  14. public float ht_vt { get; set; }
  15. public float tva_vt { get; set; }
  16. public float ttc_vt { get; set; }
  17. public float txtva_vt { get; set; }
  18. }
  19. }