Esempio n. 1
0
        public ActionResult Index()
        {
            var movie = _mobiService.GetAll();

            return(View(movie));
        }
Esempio n. 2
0
        public IHttpActionResult Get()
        {
            var products = _ProductService.GetAll().ToList();

            return(Ok(products));
        }