les commandes nominatives ont un identifiant de paiment

This commit is contained in:
Paul Schneider 2017-05-19 23:35:36 +02:00
commit ec6de91cf0
3 changed files with 7 additions and 0 deletions

View file

@ -5,6 +5,7 @@ namespace YavscLib.Billing
public interface IBillable {
string Description { get; set; }
List<IBillItem> GetBillItems();
long Id { get; set; }
}
}