コード例 #1
0
        public IActionResult EnviaTempENivelAgua(int idConf, decimal temp, bool nivelAgua)
        {
            try
            {
                var a = _configRepo.EnviaTempENivelAgua(idConf, temp, nivelAgua);

                return(Ok(a));
            }
            catch (Exception ex)
            {
                return(BadRequest(ex.Message));

                throw;
            }
        }