public NoticiaService(INoticiaRepository baseRepository, ILogRepository logRepository, INoticiaComentarioRepository comRepository, ITipoTagRepository ttgRepository, INoticiaTagRepository tagRepository) : base(baseRepository)
 {
     _baseRepository = baseRepository;
     _logRepository  = logRepository;
     _comRepository  = comRepository;
     _ttgRepository  = ttgRepository;
     _tagRepository  = tagRepository;
 }
 public TipoTagService(ITipoTagRepository baseRepository, ILogRepository logRepository) : base(baseRepository)
 {
     _baseRepository = baseRepository;
     _logRepository  = logRepository;
 }