Browse Source

Added Finish to AwgComponent and AwgGasket
Added AwgStyleType.Intrinsic enum

frogsoftware 4 days ago
parent
commit
7860de5a7b

+ 2 - 0
InABox.Integration/Awg/BOM/IAwgComponent.cs

@@ -3,7 +3,9 @@ namespace InABox.Integration.Awg
     public interface IAwgComponent : IIntegrationMaterial, IAwgBOMItem
     {
         string Group { get; set; }
+        
         string Supplier { get; set; }
+        string Finish { get; set; }
         double PackSize { get; set; }
     }
 }

+ 2 - 0
InABox.Integration/Awg/BOM/IAwgGasket.cs

@@ -2,8 +2,10 @@ namespace InABox.Integration.Awg
 {
     public interface IAwgGasket : IIntegrationMaterial, IAwgBOMItem
     {
+        
         string Group { get; set; }
         string Supplier { get; set; }
+        string Finish { get; set; }
         double Length { get; set; }
     }
 }

+ 2 - 1
InABox.Integration/Awg/Product/IAwgStyle.cs

@@ -8,7 +8,8 @@ namespace InABox.Integration.Awg
         Anodised = 2,
         Galvanised = 3,
         Varnished = 4,
-        Taped = 5
+        Taped = 5,
+        Intrinsic = 6
     }
     
     public interface IAwgStyle : IIntegrationStyle, IAwgItem