refactoring

This commit is contained in:
2018-08-01 06:12:42 +02:00
parent 29d85a0ccf
commit 8246d59ca9
20 changed files with 152 additions and 131 deletions

View 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();
}
}

View File

@ -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

View File

@ -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; }