refactoring
This commit is contained in:
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; }
|
||||
|
||||
}
|
||||
}
|
@ -20,6 +20,8 @@
|
||||
"System.Runtime": "4.0.0",
|
||||
"System.Globalization": "4.0.0",
|
||||
"System.Resources.ResourceManager": "4.0.0",
|
||||
"System.Collections": "4.0.0",
|
||||
"System.Collections.Generic": "4.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,18 +3,22 @@
|
||||
"version": 2,
|
||||
"targets": {
|
||||
".NETFramework,Version=v4.5.1": {},
|
||||
".NETPortable,Version=v4.5,Profile=Profile111": {}
|
||||
".NETPortable,Version=v4.5,Profile=Profile111": {},
|
||||
".NETFramework,Version=v4.5.1/debian.8-x86": {},
|
||||
".NETFramework,Version=v4.5.1/debian.8-x64": {},
|
||||
".NETPortable,Version=v4.5,Profile=Profile111/debian.8-x86": {},
|
||||
".NETPortable,Version=v4.5,Profile=Profile111/debian.8-x64": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"": [],
|
||||
".NETFramework,Version=v4.5.1": [],
|
||||
".NETPortable,Version=v4.5,Profile=Profile111": [
|
||||
"System.Globalization >= 4.0.0",
|
||||
"System.Resources.ResourceManager >= 4.0.0",
|
||||
"System.Runtime >= 4.0.0"
|
||||
"fx/System.Runtime >= 4.0.0",
|
||||
"fx/System.Globalization >= 4.0.0",
|
||||
"fx/System.Resources.ResourceManager >= 4.0.0",
|
||||
"fx/System.Collections >= 4.0.0",
|
||||
"fx/System.Collections.Generic >= 4.0.0"
|
||||
]
|
||||
},
|
||||
"tools": {},
|
||||
"projectFileToolGroups": {}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user