PM_Dashboard.Models.Week.Week C# (CSharp) Method

Week() public method

public Week ( String startDate, String endDate ) : System
startDate String
endDate String
return System
        public Week(String startDate, String endDate)
        {
            this.startDate = startDate;
            this.endDate = endDate;
            this.resources = new List<ProjectResource>();
        }
Week