GoalSet.GoalSet C# (CSharp) Method

GoalSet() public method

public GoalSet ( GoalId Id, string description, DateTime startDate, int lengthOfGoalInDays, string user ) : System
Id GoalId
description string
startDate DateTime
lengthOfGoalInDays int
user string
return System
    public GoalSet(GoalId Id, string description, DateTime startDate, int lengthOfGoalInDays, string user)
    {
        this.Id = Id;
        this.Description = description;
        this.StartDate = startDate;
        this.LengthOfGoalInDays = lengthOfGoalInDays;
        this.User = user;
    }
GoalSet