Two things:
* User views its devices, from a /manage index link * Yavsc.Server resurectionmain
parent
a77b83bf24
commit
f7d4447594
@ -0,0 +1,28 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Yavsc.Services;
|
||||||
|
|
||||||
|
namespace Yavsc.Billing
|
||||||
|
{
|
||||||
|
public interface IBillable {
|
||||||
|
string GetDescription ();
|
||||||
|
List<IBillItem> GetBillItems();
|
||||||
|
long Id { get; set; }
|
||||||
|
|
||||||
|
string ActivityCode { get; set; }
|
||||||
|
|
||||||
|
string PerformerId { get; set; }
|
||||||
|
string ClientId { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// Date de validation de la demande par le client
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
|
||||||
|
DateTime? ValidationDate { get; }
|
||||||
|
|
||||||
|
bool GetIsAcquitted ();
|
||||||
|
|
||||||
|
string GetFileBaseName (IBillingService service);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Yavsc {
|
||||||
|
interface IBillingService_deux {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue