-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacture.cs
38 lines (35 loc) · 1.16 KB
/
Facture.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
namespace Aiche_Bois
{
internal class Facture
{
/// <summary>
/// getter and setter for class factur
/// </summary>
public long IDFacture { get; set; }
public string TypeDeBois { get; set; }
public string Metrage { get; set; }
public double PrixMetres { get; set; }
public double TotalMesure { get; set; }
public string TypePVC { get; set; }
public double TailleCanto { get; set; }
public double TotalTaillPVC { get; set; }
public double PrixMitresLinear { get; set; }
public double PrixTotalPVC { get; set; }
public double PrixTotalMesure { get; set; }
public List<Mesure> Mesures { get; set; }
public long IdClient { get; set; }
public string Categorie { get; set; }
public List<Pvc> Pvcs { get; set; }
public bool CheckPVC { get; set; }
public DateTime DateFacture { get; set; }
public String TypeMetres { get; set; }
/// <summary>
/// Constructor:: by default
/// </summary>
public Facture()
{
}
}
}