// General Funktions
 //----------------------------------------------------------------------------------------
 public void AddWork(DateTime Start, DateTime End, string notes, Work.Type wType)
 {
     try
     {
         _TimeManager.AddWork(Start, End, notes, wType);
         OnTimeHasChanged();
     }
     catch (Exception e)
     {
         Log.Warning(e.Message);
     }
 }