コード例 #1
0
 public PresupuestoSeguimientoService(IPresupuestoEstadoRepository presupuestoEstadoRepository,
                                      IPresupuestoSeguimientoRepository presupuestoSeguimientoRepository,
                                      IPresupuestoRepository presupuestoRepository,
                                      IUnitOfWork unitOfWork)
 {
     _presupuestoEstadoRepository      = presupuestoEstadoRepository;
     _presupuestoSeguimientoRepository = presupuestoSeguimientoRepository;
     _presupuestoRepository            = presupuestoRepository;
     _unitOfWork = unitOfWork;
 }
コード例 #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;
 }
コード例 #3
0
 public PresupuestoEstadoService(IPresupuestoEstadoRepository presupuestoEstadoRepository, IUnitOfWork unitOfWork)
 {
     this.presupuestoEstadoRepository = presupuestoEstadoRepository;
     this.unitOfWork = unitOfWork;
 }