BillableHoursWebApp.Data.Models.Project.Project C# (CSharp) Method

Project() public method

public Project ( ) : System
return System
        public Project()
        {
            this.logs = new HashSet<WorkLog>();
            this.attachments = new HashSet<Attachment>();
            this.comments = new HashSet<Comment>();
        }
Project