public SobreController(ISobreRepositorio sobreRepositorio,
                        IMapper mapper,
                        ISobreService sobreService,
                        IHostingEnvironment env,
                        INotificador notificador,
                        IUser user) : base(notificador, user)
 {
     _sobreRepositorio = sobreRepositorio;
     _mapper           = mapper;
     _sobreService     = sobreService;
     _env = env;
 }
Exemplo n.º 2
0
 public SobreService(ISobreRepositorio sobreRepositorio,
                     INotificador notificador) : base(notificador)
 {
     _sobreRepositorio = sobreRepositorio;
 }