Beispiel #1
0
 private Manager(TextProgressBar progressBar, Control textYear)
 {
     this.progressBar = progressBar;
     this.textYear    = textYear;
     try
     {
         redmineManager  = new RedmineManager(host, apiKey);
         monthValueHours = new MonthValueHours(listMonthHours);
     }
     catch (Exception ex)
     {
         Console.WriteLine("Error! " + ex.Message);
     }
 }
 public UserRedmine(MonthValueHours monthValueHours)
 {
     this.monthValueHours = monthValueHours;
 }