Exemplo n.º 1
0
        public void Get_Product_ById_Test()
        {
            var result = productCartAppService.GetById(22);

            Assert.That(result, Is.Not.Null);
        }
Exemplo n.º 2
0
        public ActionResult Edit(int ProductCart_Id)
        {
            ProductCart productCart = productCartAppService.GetById(ProductCart_Id);

            return(View(productCart));
        }