ILogikalBOM.cs 559 B

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