Exemplo n.º 1
0
 public SugerenciasService(
     IClimaService climaService,
     IAtuendosService atuendosService)
 {
     _climaService    = climaService;
     _atuendosService = atuendosService;
 }
Exemplo n.º 2
0
 public UsuarioController(IUsuarioRepositorio usuarioRepositorio,
                          IUsuarioService usuarioService, IClimaService climaSVC)
 {
     _usuarioRepositorio = usuarioRepositorio;
     _usuarioService     = usuarioService;
     _climaSVC           = new ClimaService();
     eventosService      = new EventosRepositorio();
 }