Ejemplo n.º 1
0
 public PresupuestoSeguimientoController(
     IPresupuestoSeguimientoService presupuestoSeguimientoService,
     IPresupuestoEstadoService presupuestoEstadoService,
     IPresupuestoService presupuestoService)
 {
     _presupuestoSeguimientoService = presupuestoSeguimientoService;
     _presupuestoEstadoService      = presupuestoEstadoService;
     _presupuestoService            = presupuestoService;
 }
Ejemplo n.º 2
0
 public PresupuestoService(IPresupuestoRepository presupuestoRepository,
                           IPresupuestoItemRepository presupuestoItemRepository,
                           IPresupuestoEstadoRepository presupuestoEstadoRepository,
                           IPresupuestoItemRepository itemRepository,
                           IArchivoRepository archivoRepository,
                           IPresupuestoSeguimientoService presupuestoSeguimientoService,
                           IUnitOfWork unitOfWork)
 {
     this.presupuestoRepository       = presupuestoRepository;
     this.presupuestoItemRepository   = presupuestoItemRepository;
     this.presupuestoEstadoRepository = presupuestoEstadoRepository;
     this.itemRepository                = itemRepository;
     this.archivoRepository             = archivoRepository;
     this.presupuestoSeguimientoService = presupuestoSeguimientoService;
     this.unitOfWork = unitOfWork;
 }