Exemple #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;
 }
Exemple #3
0
 public GastosController(IGastoService gastoService, IUriService uriService)
 {
     _gastoService = gastoService;
     _uriService   = uriService;
 }
Exemple #4
0
 public GastosController(IGastoService gastoService)
 {
     _gastoService = gastoService;
 }