/// <summary> /// Add problems in list. /// </summary> /// <param name="problemType">Type of problem.</param> /// <param name="description">Description of the problem.</param> public void AddProblem(LicenseProblemType problemType, string description) { _problems.Add(problemType); _problems2.Add(new LicenseProblem(problemType, description)); }
/// <summary> /// Add problems in list. /// </summary> /// <param name="problemType">Type of problem.</param> /// <param name="description">Description of the problem.</param> public void AddProblem(LicenseProblemType problemType, string description) { _problems.Add(problemType); _problems2.Add( new LicenseProblem(problemType, description)); }
/// <summary> /// Initializes the object LicenseProblem. /// </summary> /// <param name="problemType">Type of problem.</param> /// <param name="description">Description of the problem.</param> public LicenseProblem(LicenseProblemType problemType, string description) { ProblemType = problemType; Description = description; }