From d47ffb93ff8256c39715aa612dfbf64c97df7de7 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 9 Mar 2017 15:20:05 +0100 Subject: [PATCH] ces interfaces appartiennent au serveur --- ZicMoove/ZicMoove/Interfaces/IBillingLine.cs | 12 ------------ ZicMoove/ZicMoove/Interfaces/IEstimate.cs | 19 ------------------- 2 files changed, 31 deletions(-) delete mode 100644 ZicMoove/ZicMoove/Interfaces/IBillingLine.cs delete mode 100644 ZicMoove/ZicMoove/Interfaces/IEstimate.cs diff --git a/ZicMoove/ZicMoove/Interfaces/IBillingLine.cs b/ZicMoove/ZicMoove/Interfaces/IBillingLine.cs deleted file mode 100644 index 3eb4b7e2..00000000 --- a/ZicMoove/ZicMoove/Interfaces/IBillingLine.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace ZicMoove.Interfaces -{ - public interface IBillingLine - { - int Count { get; set; } - string Description { get; set; } - TimeSpan Duration { get; set; } - decimal UnitaryCost { get; set; } - } -} \ No newline at end of file diff --git a/ZicMoove/ZicMoove/Interfaces/IEstimate.cs b/ZicMoove/ZicMoove/Interfaces/IEstimate.cs deleted file mode 100644 index d8c370eb..00000000 --- a/ZicMoove/ZicMoove/Interfaces/IEstimate.cs +++ /dev/null @@ -1,19 +0,0 @@ -using ZicMoove.Model.Workflow; -using System.Collections.Generic; - -namespace ZicMoove.Model.Interfaces -{ - public interface IEstimate - { - List AttachedFiles { get; set; } - List AttachedGraphics { get; } - List Bill { get; set; } - string ClientId { get; set; } - long? CommandId { get; set; } - string CommandType { get; set; } - string Description { get; set; } - long Id { get; set; } - string OwnerId { get; set; } - string Title { get; set; } - } -} \ No newline at end of file