12345678910111213141516171819202122232425262728293031323334 |
- using PRSDesktop.WidgetGroups;
- using System.Windows.Controls;
- namespace PRSDesktop
- {
- public class DeliveredToSiteDashboardProperties : IDashboardProperties { }
- public class DeliveredToSiteDashboardElement : DashboardElement<DeliveredToSiteWidget, Logistics, DeliveredToSiteDashboardProperties> { }
- /// <summary>
- /// Interaction logic for DeliveredToSiteWidget.xaml
- /// </summary>
- public partial class DeliveredToSiteWidget : UserControl, IDashboardWidget<Logistics, DeliveredToSiteDashboardProperties>
- {
- public DeliveredToSiteWidget()
- {
- InitializeComponent();
- }
- public DeliveredToSiteDashboardProperties Properties { get; set; }
- public void Refresh()
- {
- }
- public void Setup()
- {
- }
- public void Shutdown()
- {
- }
- }
- }
|