ILogikalElevationDetail.cs 636 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace InABox.Integration.Logikal
  3. {
  4. public interface ILogikalElevationDetail<TGroup, TFinish, TProfile, TGasket, TComponent, TGlass, TLabour> :
  5. ILogikalBOM<TGroup, TFinish,TProfile,TGasket,TComponent,TGlass,TLabour>,
  6. ILogikalElevationSummary
  7. where TGroup : ILogikalProductGroup
  8. where TFinish : ILogikalFinish
  9. where TProfile : ILogikalProfile
  10. where TGasket : ILogikalGasket
  11. where TComponent : ILogikalComponent
  12. where TGlass : ILogikalGlass
  13. where TLabour : ILogikalLabour
  14. {
  15. byte[] Drawing { get; set; }
  16. }
  17. }