Exemplo n.º 1
0
        public JsonResult GetAllTecnicos()
        {
            try
            {
                var empresa_Global = Convert.ToInt32(Request.Cookies["empresa_global"]);

                var tecnicos = _chamadoService.GetAllTecnicos(empresa_Global);

                return(Json(tecnicos));
            }
            catch (Exception)
            {
                throw;
            }
        }