IInvoiceable.cs 230 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Comal.Classes
  5. {
  6. public interface IInvoiceable
  7. {
  8. InvoiceLink Invoice { get; set; }
  9. ActualCharge Charge { get; set; }
  10. }
  11. }