123456789101112131415161718 |
- using System.Collections.Generic;
- namespace InABox.Integration.Logikal
- {
- public interface ILogikalElevationDetail<TGroup, TFinish, TProfile, TGasket, TComponent, TGlass, TLabour> :
- ILogikalBOM<TGroup, TFinish,TProfile,TGasket,TComponent,TGlass,TLabour>,
- ILogikalElevationSummary
- where TGroup : ILogikalProductGroup
- where TFinish : ILogikalFinish
- where TProfile : ILogikalProfile
- where TGasket : ILogikalGasket
- where TComponent : ILogikalComponent
- where TGlass : ILogikalGlass
- where TLabour : ILogikalLabour
- {
- byte[] Drawing { get; set; }
- }
- }
|