ILogikalBOM.cs 679 B

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