public DomainServiceTests() { _context = new ContextoAplicacao("Server=localhost\\sqlexpress;Database=LivrariaHBSIS;Trusted_Connection=True;"); _unitOfWork = new UnitOfWork(_context); _livroRepository = new LivroRepository(_context); _categoriaRepository = new CategoriaRepository(_context); _livroDomainService = new LivroDomainService(_livroRepository, _unitOfWork); _categoriaDomainService = new CategoriaDomainService(_categoriaRepository, _unitOfWork); }
public LivrariaController(ILivroDomainService livroDomainService, ICategoriaDomainService categoriaDomainService, IMapper mapper) { _livroDomainService = livroDomainService; _categoriaDomainService = categoriaDomainService; _mapper = mapper; }
public LivroAppService(ILivroDomainService domain, IMapper mapper) { this.domain = domain; this.mapper = mapper; }