using System.Collections.Generic; namespace InABox.Integration.Awg { public interface IAwgBOM : IIntegrationBOM where TFinish : IAwgFinish where TProfile : IAwgProfile where TGasket : IAwgGasket where TComponent : IAwgComponent where TGlass : IAwgGlass where TLabour : IAwgLabour { IEnumerable Finishes { get; set; } IEnumerable Profiles { get; set; } IEnumerable Gaskets { get; set; } IEnumerable Components { get; set; } IEnumerable Glass { get; set; } IEnumerable Labour { get; set; } } }