public IHttpActionResult Modifcar4(Instructor_Tecnica ObjInstruc) { try { TecnicaBl obj = new TecnicaBl(); var Datos = obj.Modificar4(ObjInstruc.Id); return(Ok(new { success = true, datos = Datos })); } catch (Exception exc) { return(Ok(new { success = false, exc = exc.Message })); } }