refactoring
This commit is contained in:
parent
fafa1a5c5f
commit
38d3df9883
14 changed files with 5785 additions and 20 deletions
9
YavscLib/Billing/IAccountBalance.cs
Normal file
9
YavscLib/Billing/IAccountBalance.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
namespace YavscLib
|
||||
{
|
||||
public interface IAccountBalance
|
||||
{
|
||||
long ContactCredits { get; set; }
|
||||
decimal Credits { get; set; }
|
||||
string UserId { get; set; }
|
||||
}
|
||||
}
|
||||
16
YavscLib/Billing/IEstimate.cs
Normal file
16
YavscLib/Billing/IEstimate.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
namespace YavscLib.Workflow
|
||||
{
|
||||
using System.Collections.Generic;
|
||||
public interface IEstimate
|
||||
{
|
||||
List<string> AttachedFiles { get; set; }
|
||||
List<string> AttachedGraphics { get; }
|
||||
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; }
|
||||
}
|
||||
}
|
||||
13
YavscLib/Billing/IcommandLine.cs
Normal file
13
YavscLib/Billing/IcommandLine.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue