Exemple #1
0
 public CompraService(IUnitOfWork unitOfWork) : base(unitOfWork, unitOfWork.CompraRepository)
 {
     _productoService = new ProductoService(_unitOfWork);
 }
Exemple #2
0
 public VentaService(IUnitOfWork unitOfWork) : base(unitOfWork, unitOfWork.VentaRepository)
 {
     _productoService = new ProductoService(_unitOfWork);
 }