diff --git a/Yavsc/Model/Market/Service.cs b/Yavsc/Model/Market/Service.cs index 16db3d89..11ce67af 100644 --- a/Yavsc/Model/Market/Service.cs +++ b/Yavsc/Model/Market/Service.cs @@ -9,6 +9,19 @@ namespace Yavsc.Models.Market { [ForeignKey("ContextId")] public virtual Activity Context { get; set; } + /// + /// List of billing clause, + /// associated to this service, + /// that defines the transformation rules + /// to take in account during the transformation + /// of a corresponding prestation to an amount to pay. + /// This property is built at constructing a new instance + /// and is not mapped in database. + /// For the moment, it's hard coded only. + /// + /// + + [NotMapped] public List Billing { get; set; } }