123456789101112131415 |
- using System.Collections.Generic;
- using InABox.Integration.V6;
- namespace PRSDesktop.Integrations.V6;
- public class V6BOM : IV6BOM<V6ProductGroup, V6Finish,V6Profile,V6Gasket,V6Component,V6Glass,V6Labour>
- {
- public IEnumerable<V6ProductGroup> Groups { get; set; }
- public IEnumerable<V6Finish> Finishes { get; set; }
- public IEnumerable<V6Profile> Profiles { get; set; }
- public IEnumerable<V6Gasket> Gaskets { get; set; }
- public IEnumerable<V6Component> Components { get; set; }
- public IEnumerable<V6Glass> Glass { get; set; }
- public IEnumerable<V6Labour> Labour { get; set; }
- }
|