コード例 #1
0
ファイル: PresupuestoService.cs プロジェクト: Ezinda/cya
 public PresupuestoService(IPresupuestoRepository presupuestoRepository,
                           IPresupuestoItemRepository presupuestoItemRepository,
                           IPresupuestoEstadoRepository presupuestoEstadoRepository,
                           IPresupuestoItemRepository itemRepository,
                           IArchivoRepository archivoRepository,
                           IPresupuestoSeguimientoService presupuestoSeguimientoService,
                           IUnitOfWork unitOfWork,
                           IListaPrecioRepository listaPrecioRepository)
 {
     this.presupuestoRepository       = presupuestoRepository;
     this.presupuestoItemRepository   = presupuestoItemRepository;
     this.presupuestoEstadoRepository = presupuestoEstadoRepository;
     this.itemRepository                = itemRepository;
     this.archivoRepository             = archivoRepository;
     this.presupuestoSeguimientoService = presupuestoSeguimientoService;
     this.unitOfWork            = unitOfWork;
     this.listaPrecioRepository = listaPrecioRepository;
 }
コード例 #2
0
 public ListaPrecioService(IListaPrecioRepository listaPrecioRepository, IUnitOfWork unitOfWork)
 {
     this.listaPrecioRepository = listaPrecioRepository;
     this.unitOfWork            = unitOfWork;
 }