public GetAuthorConsumer(IMapper mapper, OperationAuthorsAccounts operationAuthors)
 {
     _mapper           = mapper;
     _operationAuthors = operationAuthors;
 }
示例#2
0
 public AuthorsController(OperationAuthorsAccounts operationAuthors)
 {
     _operationAuthors = operationAuthors;
 }
 public AccountsForCreateArticleConsumer(IMapper mapper, OperationEditorsAccounts operationEditors, OperationAuthorsAccounts operationAuthors)
 {
     _mapper           = mapper;
     _operationEditors = operationEditors;
     _operationAuthors = operationAuthors;
 }
示例#4
0
 public GetGuidAuthorConsumer(OperationAuthorsAccounts operationAuthors)
 {
     _operationAuthors = operationAuthors;
 }