public static ProductExtraCostType CreateProductExtraCostType(short extraCostTypeID, string typeName)
 {
     ProductExtraCostType productExtraCostType = new ProductExtraCostType();
     productExtraCostType.ExtraCostTypeID = extraCostTypeID;
     productExtraCostType.TypeName = typeName;
     return productExtraCostType;
 }
 public void AddToProductExtraCostTypes(ProductExtraCostType productExtraCostType)
 {
     base.AddObject("ProductExtraCostTypes", productExtraCostType);
 }