| 12345678910111213141516171819 | using System;using InABox.Configuration;namespace Comal.Classes{    public class DeliveredOnSiteSettings : IUserConfigurationSettings    {        public DeliveredOnSiteSettings()        {            View = 2;            EndDate = DateTime.Today.AddDays(0 - (double)DateTime.Today.DayOfWeek).AddDays(1);            StartDate = DateTime.Today.AddDays(0 - (double)DateTime.Today.DayOfWeek).AddDays(7);        }        public int View { get; set; }        public DateTime StartDate { get; set; }        public DateTime EndDate { get; set; }    }}
 |