Achats.cs 573 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Fuel01
  4. {
  5. public class Achats
  6. {
  7. public int StationId { get; set; }
  8. public String Bandeau { get; set; }
  9. public DateTime Date { get; set; }
  10. public String KindCarbu { get; set; }
  11. public float Volume { get; set; }
  12. public float PrixCarbu { get; set; }
  13. public float MontantCarbu { get; set; }
  14. public List<PrestasFournies> Prestas { get; set; }
  15. public float MontantTotal { get; set; }
  16. public float TxTva { get; set; }
  17. }
  18. }