Esempio n. 1
0
 public SalvaTransacaoService(
     IGastoService gastoService,
     IContaRepository contaRepository,
     ICategoriaRepository categoriaRepository,
     IRecebimentoService recebimentoService)
 {
     this.gastoService        = gastoService;
     this.contaRepository     = contaRepository;
     this.categoriaRepository = categoriaRepository;
     this.recebimentoService  = recebimentoService;
 }
 public GastosController(IGastoService musicService, IMapper mapper)
 {
     _gastoService = musicService;
     _mapper       = mapper;
 }
Esempio n. 3
0
 public GastosController(IGastoService gastoService, IUriService uriService)
 {
     _gastoService = gastoService;
     _uriService   = uriService;
 }
Esempio n. 4
0
 public GastosController(IGastoService gastoService)
 {
     _gastoService = gastoService;
 }