StockForecastDashboard.cs 357 B

12345678910111213141516
  1. using InABox.Configuration;
  2. using PRSDesktop.WidgetGroups;
  3. using System.ComponentModel;
  4. namespace PRSDesktop;
  5. public class StockForecastElement : DashboardElement<StockForecastDashboard, Warehousing, StockForecastProperties>
  6. {
  7. }
  8. public class StockForecastDashboard : StockForecastControl, IDashboardWidget<Warehousing, StockForecastProperties>
  9. {
  10. }