Exemplo n.º 1
0
 public ConstructoraController(IConstructoraRepository constructoraRepository,
                               IConstructoraService constructoraService,
                               ITipoDocumentoService tipoDocumentoService,
                               IObraService obraService)
 {
     this.constructoraRepository = constructoraRepository;
     this.constructoraService    = constructoraService;
     this.tipoDocumentoService   = tipoDocumentoService;
     this.obraService            = obraService;
 }
Exemplo n.º 2
0
 public ContrasitaService(IConstructoraRepository constructoraRepository, IUnitOfWork unitOfWork)
 {
     this.constructoraRepository = constructoraRepository;
     this.unitOfWork             = unitOfWork;
 }