Esempio n. 1
0
 public ActionResult DeletarAlerta(int id)
 {
     return(Ok(AlertaService.Deletar(id)));
 }
Esempio n. 2
0
        public ActionResult <AlertaResponse> Editar(int id, [FromBody] AlertaRequest alertaRequest)
        {
            Alerta alerta = _mapperRequest.Map <Alerta>(alertaRequest);

            return(Ok(_mapperResponse.Map <AlertaResponse>(AlertaService.Editar(id, alerta))));
        }
Esempio n. 3
0
 public ActionResult <AlertaResponse> Obter(int id)
 {
     return(Ok(_mapperResponse.Map <AlertaResponse>(AlertaService.Obter(id))));
 }
Esempio n. 4
0
        public ActionResult <AlertaResponse> Salvar([FromBody] AlertaRequest alertaRequest)
        {
            Alerta alerta = _mapperRequest.Map <Alerta>(alertaRequest);

            return(Ok(_mapperResponse.Map <AlertaResponse>(AlertaService.Salvar(alerta))));
        }
Esempio n. 5
0
 public IActionResult Listar()
 {
     return(Ok(_mapperResponse.Map <List <AlertaResponse> >(AlertaService.Listar())));
 }