BillableHoursWebApp.Data.Models.Project.Project C# (CSharp) 메소드

Project() 공개 메소드

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