ILogikalElevationDetail.cs 695 B

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