DeliveredOnSiteSettings.cs 562 B

12345678910111213141516171819
  1. using System;
  2. using InABox.Configuration;
  3. namespace Comal.Classes
  4. {
  5. public class DeliveredOnSiteSettings : UserConfigurationSettings
  6. {
  7. public DeliveredOnSiteSettings()
  8. {
  9. View = 2;
  10. EndDate = DateTime.Today.AddDays(0 - (double)DateTime.Today.DayOfWeek).AddDays(1);
  11. StartDate = DateTime.Today.AddDays(0 - (double)DateTime.Today.DayOfWeek).AddDays(7);
  12. }
  13. public int View { get; set; }
  14. public DateTime StartDate { get; set; }
  15. public DateTime EndDate { get; set; }
  16. }
  17. }