refactoring
This commit is contained in:
14
Yavsc.Abstract/IT/IProject.cs
Normal file
14
Yavsc.Abstract/IT/IProject.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Yavsc.Abstract.IT
|
||||
{
|
||||
public interface IProject
|
||||
{
|
||||
long Id { get; set ; }
|
||||
string OwnerId { get; set; }
|
||||
string Name { get; set; }
|
||||
string Version { get; set; }
|
||||
|
||||
IEnumerable<string> GetConfigurations();
|
||||
}
|
||||
}
|
@ -26,7 +26,7 @@ namespace Yavsc.Services
|
||||
/// <param name="billingCode">Identifiant du type de facturation</param>
|
||||
/// <param name="queryId">Identifiant de la demande du client</param>
|
||||
/// <returns>La facture</returns>
|
||||
Task<INominativeQuery> GetBillAsync(string billingCode, long queryId);
|
||||
Task<IDecidableQuery> GetBillAsync(string billingCode, long queryId);
|
||||
|
||||
/// <summary>
|
||||
/// All performer setting in this activity
|
||||
|
@ -2,7 +2,7 @@ using System;
|
||||
|
||||
namespace Yavsc.Abstract.Workflow
|
||||
{
|
||||
public interface INominativeQuery: IQuery
|
||||
public interface IDecidableQuery: IQuery
|
||||
{
|
||||
bool Rejected { get; set; }
|
||||
DateTime RejectedAt { get; set; }
|
||||
|
Reference in New Issue
Block a user