From a0b9a47f1a63262280817745cf3941a4fe575df8 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 9 Mar 2017 15:23:23 +0100 Subject: [PATCH] =?UTF-8?q?impl=C3=A9mente=20l'interface=20serveur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ZicMoove/Pages/EstimatePages/BillingLine.cs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/ZicMoove/ZicMoove/Pages/EstimatePages/BillingLine.cs b/ZicMoove/ZicMoove/Pages/EstimatePages/BillingLine.cs index 4cdd632a..be15cc3a 100644 --- a/ZicMoove/ZicMoove/Pages/EstimatePages/BillingLine.cs +++ b/ZicMoove/ZicMoove/Pages/EstimatePages/BillingLine.cs @@ -1,15 +1,20 @@ - -using ZicMoove.Interfaces; -using System; +using System; namespace ZicMoove.Model.Workflow { - public class BillingLine : IBillingLine + using YavscLib.Billing; + public class BillingLine : ICommandLine { public long Id { get; set; } + public string Description { get; set; } + public TimeSpan Duration { get; set; } + public int Count { get; set; } = 1; + public decimal UnitaryCost { get; set; } + + public long EstimateId { get; set; } } }