IV6BOM.cs 546 B

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