protected void DeleteTipo(int idTipo) { try { var Tipo = new Tipo(); Tipo.IDTipo = idTipo; Tipo.Delete(); GetTipos(); } catch (Exception err) { Page.ClientScript.RegisterStartupScript(this.GetType(), "script", "<script>alert('" + FormatError.FormatMessageForJAlert(err.Message) + "')</script>"); } }
public static void Delete(IType objiTypeValues, IType iType, string namePropertyId) { var pTipo = objiTypeValues.GetType().GetProperty(namePropertyId); if (pTipo.GetValue(objiTypeValues, null) == null) { throw new TradeVisionValidationError("IDTipo obrigatório para a ação GET"); } var tipoTabelaColuna = new TipoTabelaColuna(iType); tipoTabelaColuna.Get(); if (tipoTabelaColuna.IDTipoTabelaColuna != null) { var tipo = new Tipo(); tipo.TipoTabelaColuna = tipoTabelaColuna; tipo.IDTipo = (int?)pTipo.GetValue(objiTypeValues, null); tipo.Delete(); } }
public void Delete() { Tipo.Delete(this, new Endereco(), "IDTipoEndereco"); }
public void Delete() { Tipo.Delete(this, new Telefone(), "IDTipoTelefone"); }
public void Delete() { Tipo.Delete(this, new Documento(), "IDTipoDocumento"); }
public void Delete() { Tipo.Delete(this, new Email(), "IDTipoEmail"); }
public static void Delete(IType objiTypeValues, IType iType, string namePropertyId) { var pTipo = objiTypeValues.GetType().GetProperty(namePropertyId); if (pTipo.GetValue(objiTypeValues, null) == null) throw new TradeVisionValidationError("IDTipo obrigatório para a ação GET"); var tipoTabelaColuna = new TipoTabelaColuna(iType); tipoTabelaColuna.Get(); if (tipoTabelaColuna.IDTipoTabelaColuna != null) { var tipo = new Tipo(); tipo.TipoTabelaColuna = tipoTabelaColuna; tipo.IDTipo = (int?)pTipo.GetValue(objiTypeValues, null); tipo.Delete(); } }