LeaveSettings.cs 740 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using InABox.Configuration;
  4. namespace Comal.Classes
  5. {
  6. public class LeaveSettings : IUserConfigurationSettings
  7. {
  8. public LeaveSettings()
  9. {
  10. SelectedGroups = new List<Guid>();
  11. SelectedEmployees = new List<Guid>();
  12. FromDate = DateTime.Today;
  13. ToDate = DateTime.Today.AddYears(1);
  14. ListSize = 200.0F;
  15. }
  16. public DateTime FromDate { get; set; }
  17. public DateTime ToDate { get; set; }
  18. public Guid GroupID { get; set; }
  19. public List<Guid> SelectedGroups { get; set; }
  20. public List<Guid> SelectedEmployees { get; set; }
  21. public double ListSize { get; set; }
  22. }
  23. }