refactoring

This commit is contained in:
Paul Schneider 2017-05-02 13:10:23 +02:00
commit 8b5e50626e
40 changed files with 161 additions and 103 deletions

12
YavscLib/IcommandLine.cs Normal file
View file

@ -0,0 +1,12 @@
namespace YavscLib.Billing
{
public interface ICommandLine
{
long Id { get; set; }
string Description { get; set; }
int Count { get; set; }
decimal UnitaryCost { get; set; }
long EstimateId { get; set; }
}
}