| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using InABox.Core;
- using InABox.Wpf;
- using PRSDesktop.Dashboards;
- using Comal.Classes;
- namespace PRSDesktop;
- public class EquipmentMaintenancePanel : EquipmentSchedulesDashboard, IPanel<Equipment>
- {
-
- public string SectionName => "EquipmentSchedules";
-
- public DataModel DataModel(Selection selection)
- {
- return new AutoDataModel<Equipment>(new Filter<Equipment>().All());
- }
- public event DataModelUpdateEvent? OnUpdateDataModel;
-
- public bool IsReady { get; set; }
-
- public void CreateToolbarButtons(IPanelHost host)
- {
- }
- public Dictionary<string, object[]> Selected()
- {
- return new();
- }
- public void Heartbeat(TimeSpan time)
- {
-
- }
- }
|