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;
 }
Exemple #2
0
 public ArchivoService(IArchivoRepository archivoRepository, IUnitOfWork unitOfWork)
 {
     this.archivoRepository = archivoRepository;
     this.unitOfWork        = unitOfWork;
 }
 public ArchivoService(IArchivoRepository _archivoRepo)
 {
     this.archivoRepository = _archivoRepo;
 }