| using InABox.Integration.Logikal;namespace PRSLogikal{    public class LogikalGasket : ILogikalGasket    {        public string Code { get; set; }        public string Description { get; set; }        public double Quantity { get; set; }        public double Cost { get; set; }        public string Group { get; set; }        public string Supplier { get; set; }        public double Length { get; set; }    }}
 |