WIP Estimate
This commit is contained in:
parent
5604ae3a54
commit
9293ee4ec9
27 changed files with 1308 additions and 76 deletions
|
|
@ -1,6 +1,7 @@
|
|||
namespace Yavsc.Interfaces
|
||||
{
|
||||
using System.Collections.Generic;
|
||||
using Yavsc.Interfaces.Workflow;
|
||||
using Yavsc.Models.Billing;
|
||||
public interface IEstimate
|
||||
{
|
||||
|
|
@ -13,7 +14,6 @@
|
|||
string Description { get; set; }
|
||||
long Id { get; set; }
|
||||
string OwnerId { get; set; }
|
||||
int? Status { get; set; }
|
||||
string Title { get; set; }
|
||||
}
|
||||
}
|
||||
20
Yavsc/Interfaces/Workflow/QueryStatus.cs
Normal file
20
Yavsc/Interfaces/Workflow/QueryStatus.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
namespace Yavsc.Interfaces.Workflow
|
||||
{
|
||||
/// <summary>
|
||||
/// Status,
|
||||
/// should be associated to any
|
||||
/// client user query to a provider user or
|
||||
/// other external entity.
|
||||
/// </summary>
|
||||
public enum QueryStatus: int
|
||||
{
|
||||
Inserted,
|
||||
OwnerValidated,
|
||||
Visited,
|
||||
Rejected,
|
||||
Accepted,
|
||||
InProgress,
|
||||
Failed,
|
||||
Success
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue