FactoryProductivityDataModel.cs 522 B

1234567891011121314151617181920
  1. using System.Collections.Generic;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. namespace PRSDesktop
  5. {
  6. internal class FactoryProductivityDataModel : DataModel
  7. {
  8. private FactoryProductivityDashboard.HistoryViewModel history;
  9. public FactoryProductivityDataModel(FactoryProductivityDashboard.HistoryViewModel history)
  10. {
  11. this.history = history;
  12. AddTable<ManufacturingHistory>(null, null);
  13. }
  14. public override string Name => "Factory Productivity";
  15. }
  16. }