Beispiel #1
0
 public AdmPostagemController(AutorOrmService autorOrmService, CategoriaOrmService categoriaOrmService, EtiquetaOrmService etiquetaOrmService, PostagemOrmService postagemOrmService)
 {
     this.autorOrmService     = autorOrmService;
     this.categoriaOrmService = categoriaOrmService;
     this.etiquetaOrmService  = etiquetaOrmService;
     this.postagemOrmService  = postagemOrmService;
 }
Beispiel #2
0
 public AdminPostagensController(PostagemOrmService postagemOrmService, CategoriaOrmService categoriaOrmService, AutorOrmService autorOrmService, RevisaoOrmService revisaoOrmService)
 {
     _postagemOrmService  = postagemOrmService;
     _categoriaOrmService = categoriaOrmService;
     _autorOrmService     = autorOrmService;
     _revisaoOrmService   = revisaoOrmService;
 }
Beispiel #3
0
 public HomeController(
     ILogger <HomeController> logger,
     CategoriaOrmService categoriaOrmService,
     PostagemOrmService postagemOrmService
     )
 {
     _logger = logger;
     _categoriaOrmService = categoriaOrmService;
     _postagemOrmService  = postagemOrmService;
 }
Beispiel #4
0
 public AdminCategoriasController(
     CategoriaOrmService categoriaOrmService,
     EtiquetaOrmService etiquetaOrmService,
     PostagemOrmService postagemOrmService
     )
 {
     _categoriaOrmService = categoriaOrmService;
     _etiquetaOrmService  = etiquetaOrmService;
     _postagensOrmService = postagemOrmService;
 }
Beispiel #5
0
 public HomeController(
     ILogger <HomeController> logger,
     CategoriaOrmService categoriaOrmService,
     PostagemOrmService postagemOrmService
     )
 {
     this.logger = logger;
     this.categoriaOrmService = categoriaOrmService;
     this.postagemOrmService  = postagemOrmService;
 }
Beispiel #6
0
        public AdminPostagemController(

            PostagemOrmService postagemOrmService,
            CategoriaOrmService categoriaOrmService,
            AutorOrmService autoresOrmService

            )
        {
            _postagemOrmService  = postagemOrmService;
            _categoriaOrmService = categoriaOrmService;
            _autoresOrmService   = autoresOrmService;
        }
 public AdminPostagensController(
     PostagemOrmService postagemOrmService,
     CategoriaOrmService categoriaOrmService,
     AutorOrmService autorOrmService,
     EtiquetaOrmService etiquetaOrmService
     )
 {
     _postagemOrmService  = postagemOrmService;
     _categoriaOrmService = categoriaOrmService;
     _autorOrmService     = autorOrmService;
     _etiquetaOrmService  = etiquetaOrmService;
 }
Beispiel #8
0
 public HomeController(
     ILogger <HomeController> logger,
     CategoriaOrmService categoriaOrmService,
     PostagemOrmService postagemOrmService,
     AutorOrmService autorOrmService,
     EtiquetaOrmService etiquetaOrmService
     )
 {
     _logger = logger;
     _categoriaOrmService = categoriaOrmService;
     _postagemOrmService  = postagemOrmService;
     _autorOrmService     = autorOrmService;
     _etiquetaOrmService  = etiquetaOrmService;
 }
Beispiel #9
0
        public HomeController(
            ILogger <HomeController> logger
            , CategoriaOrmService categoriaOrmService
            , PostagemOrmService postagemOrmService
            , AutorOrmService autorOrmService
            , EtiquetaOrmService etiquetaOrmService
            , ClassificacaoOrmService classificacaoOrmService
            , ComentarioOrmService comentarioOrmService
            , RevisaoOrmService revisaoOrmService
            , PostagemEtiquetaOrmService postagemEtiquetaOrmService

            )
        {
            _logger = logger;
            _categoriaOrmService        = categoriaOrmService;
            _postagemOrmService         = postagemOrmService;
            _autorOrmService            = autorOrmService;
            _etiquetaOrmService         = etiquetaOrmService;
            _classificacaoOrmService    = classificacaoOrmService;
            _comentarioOrmService       = comentarioOrmService;
            _revisaoOrmService          = revisaoOrmService;
            _postagemEtiquetaOrmService = postagemEtiquetaOrmService;
        }
 public AdminRevisoesController(RevisaoOrmService revisaoOrmService, PostagemOrmService postagemOrmService)
 {
     _revisaoOrmService  = revisaoOrmService;
     _postagemOrmService = postagemOrmService;
 }
Beispiel #11
0
 public ComentariosController(ComentarioOrmService comentarioOrmService, PostagemOrmService postagemOrmService)
 {
     _comentarioOrmService = comentarioOrmService;
     _postagemOrmService   = postagemOrmService;
 }
 public AdminPostagensController(
     PostagemOrmService postagemOrmService
     )
 {
     _postagemOrmService = postagemOrmService;
 }