minChz.|<_|

This commit is contained in:
Paul Schneider 2018-02-25 03:33:54 +01:00
commit 77e229fc8a
30 changed files with 3182 additions and 95 deletions

View file

@ -4,7 +4,6 @@ using System.Collections.Generic;
namespace Yavsc.Billing
{
public interface IBillable {
string BillingCode { get; set; }
string GetDescription ();
List<IBillItem> GetBillItems();
long Id { get; set; }

View file

@ -1,5 +1,5 @@
CONFIG=Release
VERSION=1.0.5-rc6
VERSION=1.0.5-rc7
PRJNAME=Yavsc.Abstract
PKGFILENAME=$(PRJNAME).$(VERSION).nupkg
DESTPATH=.

View file

@ -0,0 +1,10 @@
using System;
namespace Yavsc.Abstract.Workflow
{
public interface INominativeQuery: IQuery
{
bool Rejected { get; set; }
DateTime RejectedAt { get; set; }
}
}

View file

@ -1,4 +1,4 @@
namespace Yavsc.Workflow
namespace Yavsc.Abstract.Workflow
{
using Yavsc;
using Yavsc.Billing;

Binary file not shown.