yavsc/YavscLib/Workflow/IQuery.cs

16 lines
359 B
C#
Raw Normal View History

2017-05-02 13:10:23 +02:00
namespace YavscLib.Models.Workflow
2016-11-04 13:55:48 +01:00
{
2017-05-05 23:37:07 +02:00
using System.Collections.Generic;
2017-02-23 03:10:30 +01:00
using YavscLib;
2017-05-05 23:37:07 +02:00
using YavscLib.Billing;
2017-04-08 00:32:23 +02:00
2017-05-05 23:37:07 +02:00
public interface IQuery: IBaseTrackedEntity, IBillable
2016-11-04 13:55:48 +01:00
{
QueryStatus Status { get; set; }
}
2017-05-05 23:37:07 +02:00
public interface IBillable {
string Description { get; set; }
List<IBillItem> GetBillItems();
2016-11-04 13:55:48 +01:00
2017-05-05 23:37:07 +02:00
}
2016-11-04 13:55:48 +01:00
}