ILogikalBOM.cs 480 B

123456789101112131415
  1. using InABox.Integration.Awg;
  2. namespace InABox.Integration.Logikal
  3. {
  4. public interface ILogikalBOM<TFinish,TProfile,TGasket,TComponent,TGlass,TLabour>
  5. : IAwgBOM<TFinish,TProfile,TGasket,TComponent,TGlass,TLabour>
  6. where TFinish : ILogikalFinish
  7. where TProfile : ILogikalProfile
  8. where TGasket : ILogikalGasket
  9. where TComponent : ILogikalComponent
  10. where TGlass : ILogikalGlass
  11. where TLabour : ILogikalLabour
  12. {
  13. }
  14. }