public CategoryController(ICategory category, IMapper mapper, IMongoTagCategoryAssigment categoryAssigment, IBooks book, IAuthor author)
 {
     _category          = category;
     _mapper            = mapper;
     _categoryAssigment = categoryAssigment;
     _book   = book;
     _author = author;
 }
Beispiel #2
0
 public CategoryTagAssignmentController(IMapper mapper, IMongoTagCategoryAssigment categoryAssigment)
 {
     _mapper            = mapper;
     _categoryAssigment = categoryAssigment;
 }