public ContentType Put([FromBody] ContentType contentType)
 {
     return(_contentTypeService.UpdateContentType(contentType));
     //return new ContentType{BookType = "NewBookType", Id = 99, Category = "New Category", Group = "New Group"};
 }