Ejemplo n.º 1
0
 public PostagemController(IPostagemAppService postagemAppService,
                           ICurtidasAppService curtidasAppService,
                           IComentarioAppService comentarioAppService)
 {
     _postagemAppService   = postagemAppService;
     _curtidasAppService   = curtidasAppService;
     _comentarioAppService = comentarioAppService;
 }
Ejemplo n.º 2
0
 public PerfilAppService(IPostagemAppService postagemAppService,
                         IUsuarioAppService usuarioAppService,
                         IComentarioAppService comentarioAppService)
 {
     _postagemAppService   = postagemAppService;
     _usuarioAppService    = usuarioAppService;
     _comentarioAppService = comentarioAppService;
 }
Ejemplo n.º 3
0
 public ComentarioController(IComentarioAppService comentarioAppService)
 {
     _comentarioAppService = comentarioAppService;
 }