IV6BOM.cs 606 B

123456789101112131415161718
  1. using InABox.Integration.Awg;
  2. namespace InABox.Integration.V6
  3. {
  4. public interface IV6BOM<TDiscount, TGroup, TStyle, TSupplier, TProfile,TGasket,TComponent,TGlass,TLabour>
  5. : IAwgBOM<TDiscount, TGroup, TStyle, TSupplier, TProfile,TGasket,TComponent,TGlass,TLabour>
  6. where TDiscount : IV6Discount
  7. where TGroup : IV6Group
  8. where TStyle : IV6Style
  9. where TSupplier : IV6Supplier
  10. where TProfile : IV6Profile
  11. where TGasket : IV6Gasket
  12. where TComponent : IV6Component
  13. where TGlass : IV6Glass
  14. where TLabour : IV6Labour
  15. {
  16. }
  17. }