IV6BOM.cs 440 B

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