ILogikalElevationDetail.cs 576 B

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