Exemple #1
0
        public ActionResult <TipoLogViewModel> Post([FromBody] CadastroTipoLogViewModel tipoLog)
        {
            var tipoLogViewModel = _repo.Incluir(tipoLog);

            return(Ok(tipoLogViewModel));
        }
Exemple #2
0
        public TipoLogViewModel Post([FromBody] CadastroTipoLogViewModel tipoLog)
        {
            var tipoLogViewModel = _repo.Incluir(tipoLog);

            return(tipoLogViewModel);
        }