1234567891011121314151617181920212223 |
- using System;
- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class StockMovementSettings : IUserConfigurationSettings
- {
- public StockMovementSettings()
- {
- View = 1;
- EndDate = DateTime.Today;
- StartDate = DateTime.Today.AddDays(-6);
- ShowBatches = false;
- BatchesWidth = 200.0F;
- }
- public int View { get; set; }
- public DateTime StartDate { get; set; }
- public DateTime EndDate { get; set; }
- public bool ShowBatches { get; set; }
- public double BatchesWidth { get; set; }
- }
- }
|