public IActionResult PostTags([FromBody, Bind("Tag, GroupName")] Tags tag) { _tags.AddTags(tag); var getTags = _tags.GetTags().FirstOrDefault(x => x.GroupName == tag.GroupName && x.Tag == tag.Tag); if (getTags != null) { return(CreatedAtAction("GetTags", new { Id = getTags.TagId }, tag)); } else { return(NotFound()); } }