public GastoService(IUnitOfWork unitOfWork, IGastoRepository gastoRepository) { this._unitOfWork = unitOfWork; _gastoRepository = gastoRepository; }
public GastoController(IGastoRepository repo) { _repo = repo; }
public GastoService(IGastoRepository gastoRepository) { this.gastoRepository = gastoRepository; }