using System; using System.Collections.Generic; using Yavsc.Services; namespace Yavsc.Billing { public interface IBillable { string Description { get; } List GetBillItems(); long Id { get; set; } string ActivityCode { get; set; } string PerformerId { get; set; } string ClientId { get; set; } /// /// Date de validation de la demande par le client /// /// DateTime? ValidationDate { get; } bool GetIsAcquitted (); string GetFileBaseName (IBillingService service); } }