public ActionResult Checkout( string cep , string type ) {
			Cart cart = new Cart();

			return Redirect( cart.Checkout(
				"http://127.0.0.1:8080/Cart/Finalize",
				"http://127.0.0.1:8080/Cart/Cancel",
				cep,
				type
			) );
		}