| 12345678910111213141516171819 | using System;using System.Collections.Generic;using System.Text;namespace InABox.Logikal{    public interface ILogikalBOMItem    {        string Code { get; set; }        string Description { get; set; }        double Quantity { get; set; }        double Cost { get; set; }    }}
 |