/// <summary> /// Get Estimates from DB and add them to Board.Estimates Dictionary /// <example> /// <code> /// Board.GetEstimations(); /// </code> /// </example> /// </summary> public static void GetEstimations() { var estimations = BoardDB.GetEstimations(); foreach (var est in estimations) { Board.Estimates.Add(est.estimateId, est); } }