public JsonPatchDocument Create(string twitchUsername, DevOpsProductBacklogItem pbiInfo)
        {
            var jsonPatchDocument = _createJsonPatchForWorkItemCommand.Create(twitchUsername, pbiInfo);

            jsonPatchDocument
            .AddDescription(pbiInfo.Description);

            return(jsonPatchDocument);
        }
        public JsonPatchDocument Create(string twitchUsername, DevOpsBug bugInfo)
        {
            var jsonPatchDocument = _createJsonPatchForWorkItemCommand.Create(twitchUsername, bugInfo);

            jsonPatchDocument
            .AddReproSteps(bugInfo.ReproSteps)
            .AddSystemInfo(bugInfo.SystemInfo);

            return(jsonPatchDocument);
        }