static void AddError(Exception msg) { try { BPSEntities db = clsDAL.efdbBPS(); string strMsg = msg.Message.ToString(); if (strMsg + "" == "") { strMsg = msg.InnerException.ToString(); } if (strMsg + "" != "") { tblBandWidthError tbl = new tblBandWidthError(); tbl.WE_Created = DateTime.Now; tbl.WE_Desc = strMsg; db.tblBandWidthError.Add(tbl); db.SaveChanges(); } } catch (Exception) { } }
public ResponseServices <int> EliminarPorfesor(long idEstudiante) { var response = new ResponseServices <int>(); response.Type = Enums.MensajeRespuesta.Eliminar.ToStringAttribute(); var result = _ctxModel.Profesor.Find(idEstudiante); if (result != null) { _ctxModel.Profesor.Remove(result); var eliminado = _ctxModel.SaveChanges(); response.Info = eliminado; response.Message = Enums.MensajeRespuesta.Ok.ToStringAttribute(); response.State = true; return(response); } response.Info = (int)Enums.Status.Error; response.Message = Enums.MensajeRespuesta.Error.ToStringAttribute(); response.State = false; return(response); }