コード例 #1
0
 public ActionResult <List <PerfilDTO> > GetAll()
 {
     try
     {
         return(_perfilAppService.GetAll());
     }
     catch (Exception)
     {
         return(BadRequest());
     }
 }
コード例 #2
0
 public ActionResult <IEnumerable <string> > GetAll()
 {
     try
     {
         return(Ok(_perfilAppService.GetAll()));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
コード例 #3
0
 public IActionResult Get()
 {
     return(Response(_perfilAppService.GetAll()));
 }
コード例 #4
0
 public ActionResult Perfis()
 {
     return(PartialView("PerfilPopUp", Mapper.Map <IEnumerable <Perfil>, IEnumerable <PerfilViewModel> >(PerfilApp.GetAll())));
 }
コード例 #5
0
        public ActionResult Index()
        {
            PodeLer();

            var perfilViewModel = Mapper.Map <IEnumerable <Perfil>, IEnumerable <PerfilViewModel> >(PerfilApp.GetAll());

            return(View(perfilViewModel));
        }