public EventoController(IEventoAppService eventoApp, ITipo_eventoAppService tipoeventoAPP, ICommentsAppService commentsApp, IEvento_userAppService evento_userApp, IAlbum_eventoAppService albumEventoApp, IUserAppService userApp)
 {
     this.UserApp = userApp;
     this.EventoApp = eventoApp;
     this.TipoEventoApp = tipoeventoAPP;
     this.CommentsApp = commentsApp;
     this.AlbumEventoApp = albumEventoApp;
     this.EventouserApp = evento_userApp;
 }
 public ComentarioController(ICommentsAppService commentsApp, ITopicoAppService topicoApp)
 {
     this.TopicoApp = topicoApp;
     this.CommentsApp = commentsApp;
 }
 public CommentsController(ICommentsAppService commentsAppService) : base() => _commentsAppService = commentsAppService;