| 123456789101112131415161718 |
- using InABox.Integration.Awg;
- namespace InABox.Integration.Logikal
- {
- public interface ILogikalBOM<TGroup, TFinish,TProfile,TGasket,TComponent,TGlass,TLabour>
- : IAwgBOM<TGroup, TFinish,TProfile,TGasket,TComponent,TGlass,TLabour>
- where TGroup : ILogikalProductGroup
- where TFinish : ILogikalFinish
- where TProfile : ILogikalProfile
- where TGasket : ILogikalGasket
- where TComponent : ILogikalComponent
- where TGlass : ILogikalGlass
- where TLabour : ILogikalLabour
- {
- byte[] ExcelData { get; set; }
- byte[] SQLiteData { get; set; }
- }
- }
|