StockMovementSettings.cs 620 B

1234567891011121314151617181920212223
  1. using System;
  2. using InABox.Configuration;
  3. namespace Comal.Classes
  4. {
  5. public class StockMovementSettings : IUserConfigurationSettings
  6. {
  7. public StockMovementSettings()
  8. {
  9. View = 1;
  10. EndDate = DateTime.Today;
  11. StartDate = DateTime.Today.AddDays(-6);
  12. ShowBatches = false;
  13. BatchesWidth = 200.0F;
  14. }
  15. public int View { get; set; }
  16. public DateTime StartDate { get; set; }
  17. public DateTime EndDate { get; set; }
  18. public bool ShowBatches { get; set; }
  19. public double BatchesWidth { get; set; }
  20. }
  21. }