Exemplo n.º 1
0
 public BlogController(ICategoryAppService categoryAppService, IArticleAppService articleAppService,
                       IAuthorAppService authorAppService, ISearchService searchService)
 {
     _categoryAppService = categoryAppService;
     _articleAppService  = articleAppService;
     _authorAppService   = authorAppService;
     _searchService      = searchService;
 }
Exemplo n.º 2
0
 public AuthorsController(IAuthorAppService authorService,
                          IMapper mapper,
                          IUrlHelper urlHelper,
                          ITypeHelperService typeHelperService)
 {
     _authorService     = authorService;
     _mapper            = mapper;
     _urlHelper         = urlHelper;
     _typeHelperService = typeHelperService;
 }
Exemplo n.º 3
0
 public BooksController(IBookAppService bookAppService,
                        IAuthorAppService authorAppService,
                        IMapper mapper,
                        ILogger <BooksController> logger,
                        IUrlHelper urlHelper)
 {
     _bookAppService   = bookAppService;
     _authorAppService = authorAppService;
     _mapper           = mapper;
     _logger           = logger;
     _urlHelper        = urlHelper;
 }
Exemplo n.º 4
0
 public EditModalModel(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
 public CreateModalModel(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
Exemplo n.º 6
0
 public AuthorAppService_Tests()
 {
     _authorAppService = GetRequiredService <IAuthorAppService>();
 }
Exemplo n.º 7
0
 public AuthorController(IAuthorAppService appService)
 {
     _appService = appService;
 }
Exemplo n.º 8
0
 public BookAppService_Tests()
 {
     _bookAppService   = GetRequiredService <IBookAppService>();
     _authorAppService = GetRequiredService <IAuthorAppService>();
 }
 public PlaygroundAuthorController(IAuthorAppService authorAppService)
 {
     AuthorAppService = authorAppService;
 }
Exemplo n.º 10
0
 public DefaultModel(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
Exemplo n.º 11
0
 public HomeController(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
Exemplo n.º 12
0
 public Test2Model(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
Exemplo n.º 13
0
 public AuthorAppServiceTest(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
Exemplo n.º 14
0
 public HomeController(ILogger <HomeController> logger
                       , IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
     _logger           = logger;
 }
Exemplo n.º 15
0
 public AuthorDetailsModel(IAuthorAppService authorAppService)
 {
     _authorAppService = authorAppService;
 }
Exemplo n.º 16
0
 public AuthorController(IAuthorAppService AuthorAppService)
 {
     _AuthorAppService = AuthorAppService;
 }