public static string Actualizar(DetEvento_Encargado value) { string rpt = "ok"; SqlConnection cn = new SqlConnection(Conexion.cn); cn.Open(); try { DynamicParameters dp1 = new DynamicParameters(); dp1.Add("@IdEvento", value.IdEvento); dp1.Add("@DNI", value.DNI); dp1.Add("@Confirmacion", value.Confirmacion); cn.Execute("itData.SP_U_DetEvento_Encargado", dp1, commandType: CommandType.StoredProcedure); } catch (Exception e) { rpt = "Excepción ocurrida: " + e.Message; } finally { cn.Close(); cn.Dispose(); } return(rpt); }
public string Actualizar(DetEvento_Encargado value) { return(DAO.DetEvento_EncargadoDAO.Actualizar(value)); }
public string Insertar(DetEvento_Encargado value) { return(DAO.DetEvento_EncargadoDAO.Ingresar(value)); }
public string Put([FromBody] DetEvento_Encargado value) { return(gestorDetEvento_Encargado.Actualizar(value)); }
public string Post([FromBody] DetEvento_Encargado value) { return(gestorDetEvento_Encargado.Insertar(value)); }