1234567891011121314151617181920 |
- using System.Collections.Generic;
- using Comal.Classes;
- using InABox.Core;
- namespace PRSDesktop
- {
- internal class FactoryProductivityDataModel : DataModel
- {
- private FactoryProductivityDashboard.HistoryViewModel history;
- public FactoryProductivityDataModel(FactoryProductivityDashboard.HistoryViewModel history)
- {
- this.history = history;
- AddTable<ManufacturingHistory>(null, null);
- }
- public override string Name => "Factory Productivity";
- }
- }
|