private ContentTypeModel CreateContentTypeModel(ContentType contentType)
 {
     return(new ContentTypeModel
     {
         Name = string.Format("{0} ({1})", contentType.FullName, contentType.Name),
         AmountOfContent = _contentFinder.Count(contentType.ID),
         Id = contentType.ID,
         Category = GetCategory(contentType.ModelType)
     });
 }