yavsc/YavscLib/Workflow/IQuery.cs

17 lines
359 B
C#

9 years ago
namespace YavscLib.Models.Workflow
9 years ago
{
using System.Collections.Generic;
using YavscLib;
using YavscLib.Billing;
9 years ago
public interface IQuery: IBaseTrackedEntity, IBillable
9 years ago
{
QueryStatus Status { get; set; }
}
public interface IBillable {
string Description { get; set; }
List<IBillItem> GetBillItems();
9 years ago
}
9 years ago
}