public ActionResult CreateIssueItem(long issueId)
        {
            //need to get issue here to assign to new issueItem
            //so when mapping to Model, we will have StoreId as defined
            //in AutoMapper configuration
            var issue     = _issueRepository.GetById(issueId);
            var issueItem = new IssueItem
            {
                IsNew = true,
                Issue = issue
            };

            _issueItemRepository.Insert(issueItem);

            this._dbContext.SaveChanges();

            var model = new IssueItemModel();

            model = issueItem.ToModel();
            var html = this.IssueItemPanel(model);

            return(Json(new { Id = issueItem.Id, Html = html }));
        }