Example #1
0
 public PerfilAppService(IPostagemAppService postagemAppService,
                         IUsuarioAppService usuarioAppService,
                         IComentarioAppService comentarioAppService)
 {
     _postagemAppService   = postagemAppService;
     _usuarioAppService    = usuarioAppService;
     _comentarioAppService = comentarioAppService;
 }
Example #2
0
 public PostagemController(IPostagemAppService postagemAppService,
                           ICurtidasAppService curtidasAppService,
                           IComentarioAppService comentarioAppService)
 {
     _postagemAppService   = postagemAppService;
     _curtidasAppService   = curtidasAppService;
     _comentarioAppService = comentarioAppService;
 }
Example #3
0
 public PostagemController(IPostagemAppService postagemAppService)
 {
     _postagemAppService = postagemAppService;
 }