public ActionResult <Week> AddSuggestionByContract([FromRoute] string userId, [FromBody] AddSuggestion contract)
        {
            Logger.Info(this, "Adding suggestion by contract");

            // Suggestion: id, userId, Name, NumberOfHours, Kind, Type, Milestone, Description
            Suggestion newSugg = new Suggestion {
                Id            = _suggestionRepository.createUniqueId(),
                UserId        = userId,
                Name          = contract.Name,
                NumberOfHours = contract.NumberOfHours,
                Kind          = contract.Kind,
                Type          = contract.Type,
                Milestone     = contract.Milestone,
                Description   = contract.Description,
            };

            this.AddSuggestion(newSugg, userId);
            return(Ok(newSugg));
        }