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

@ -5,8 +5,9 @@ using Newtonsoft.Json;
namespace Yavsc.Models.Billing
{
using YavscLib.Billing;
public class CommandLine {
public class CommandLine : ICommandLine {
[Key(), DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long Id { get; set; }

View file

@ -7,9 +7,9 @@ using System.Linq;
namespace Yavsc.Models.Billing
{
using Interfaces;
using Models.Workflow;
using Newtonsoft.Json;
using YavscLib.Workflow;
public partial class Estimate : IEstimate
{