ces interfaces appartiennent au serveur

This commit is contained in:
2017-03-09 15:20:05 +01:00
parent 58f61cf8e3
commit 287538b615
2 changed files with 0 additions and 31 deletions

View File

@ -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; }
}
}

View File

@ -1,19 +0,0 @@
using ZicMoove.Model.Workflow;
using System.Collections.Generic;
namespace ZicMoove.Model.Interfaces
{
public interface IEstimate
{
List<string> AttachedFiles { get; set; }
List<string> AttachedGraphics { get; }
List<BillingLine> 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; }
}
}