Exemplo n.º 1
0
 public ProductController()
 {
     _productService = new ProductService(_unitOfWork);
     _productTypeService = new ProductTypeService(_unitOfWork);
     _supplierService = new SupplierService(_unitOfWork);
 }
Exemplo n.º 2
0
 public SupplierController()
 {
     _supplierService = new SupplierService(_unitOfWork);
 }