public FavoriteConvertor(
     ITheCategoryMeta theCategoryMeta,
     ITheCategoryConvertor theCategoryConvertor
     )
 {
     this.theCategoryMeta      = theCategoryMeta;
     this.theCategoryConvertor = theCategoryConvertor;
 }
 public CategoryController(
     ITheCategoryMeta theCategoryMeta,
     ICategoryRepository categoryRepository,
     ICategoryConvertor categoryConvertor)
 {
     this.categoryRepository = categoryRepository;
     this.categoryConvertor  = categoryConvertor;
     this.theCategoryMeta    = theCategoryMeta;
 }