IV6BOM.cs 495 B

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