コード例 #1
0
 public ConstructoraController(IConstructoraRepository constructoraRepository,
                               IConstructoraService constructoraService,
                               ITipoDocumentoService tipoDocumentoService,
                               IObraService obraService)
 {
     this.constructoraRepository = constructoraRepository;
     this.constructoraService    = constructoraService;
     this.tipoDocumentoService   = tipoDocumentoService;
     this.obraService            = obraService;
 }
コード例 #2
0
 public ContrasitaService(IConstructoraRepository constructoraRepository, IUnitOfWork unitOfWork)
 {
     this.constructoraRepository = constructoraRepository;
     this.unitOfWork             = unitOfWork;
 }