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