示例#1
0
 public ActionResult <IEnumerable <string> > Get()
 {
     return(Ok(_applicationService.GetAll()));
 }
        public ActionResult Index()
        {
            var empresas = _service.GetAll();

            return(View(empresas));
        }