// POST api/<controller>
 public ContentType Post([FromBody] ContentType contentType)
 {
     return(_contentTypeService.AddContentType(contentType));
 }