public Int32 resultadoProgramaXMallaEncuestaRegistrar(List<ResultadoProgramaXMallaEncuestaDC> lstLR) { SSIA2013DataContext dc = null; try { dc = new SSIA2013DataContext(ConfigurationManager.ConnectionStrings["SSIA2013"].ToString()); Int32 response = -1; for (int i = 0; i < lstLR.Count(); i++) { response = dc.uspResultadoProgramaXMallaEncuesta_RegistrarXMallaEncuesta(lstLR[i].MallaEncuestaId, lstLR[i].ResultadoProgramaId, lstLR[i].Asignado); if (response == -1) { return response; } } return response; } catch (Exception ex) { throw ex; } finally { if (dc != null) { dc.Dispose(); } } }