Epiworx.Data.HourData.HourData C# (CSharp) Méthode

HourData() public méthode

public HourData ( ) : System
Résultat System
        public HourData()
        {
            this.HourId = 0;
            this.Date = DateTime.MaxValue;
            this.Duration = 0;
            this.IsArchived = false;
            this.Notes = string.Empty;
            this.StoryId = 0;
            this.Story = new StoryData();
            this.UserId = 0;
            this.User = new UserData();
            this.CreatedBy = 0;
            this.CreatedByUser = new UserData();
            this.CreatedDate = DateTime.MaxValue;
            this.ModifiedBy = 0;
            this.ModifiedByUser = new UserData();
            this.ModifiedDate = DateTime.MaxValue;
        }
HourData