refactoring

This commit is contained in:
Paul Schneider 2017-03-02 23:47:44 +01:00
commit 38d3df9883
14 changed files with 5785 additions and 20 deletions

View file

@ -0,0 +1,13 @@
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; }
}
}