yavsc/Yavsc/Interfaces/Workflow/IBillingClause.cs

9 lines
187 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00
using Yavsc.Billing;
2017-05-12 12:15:57 +02:00
2016-09-05 19:01:43 +02:00
namespace Yavsc.Models.Billing {
2017-05-12 12:15:57 +02:00
public interface IBillingClause { 
string Description {get; set;}
IBillingImpacter Impacter { get; }
}
2016-08-30 23:04:13 +02:00
2017-05-12 12:15:57 +02:00
}