コード例 #1
0
ファイル: Tipo.aspx.cs プロジェクト: Didox/MVC_e_Velocit_app
 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>");
     }
 }
コード例 #2
0
ファイル: Tipos.cs プロジェクト: Didox/MVC_e_Velocit_app
        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();
            }
        }
コード例 #3
0
 public void Delete()
 {
     Tipo.Delete(this, new Endereco(), "IDTipoEndereco");
 }
コード例 #4
0
 public void Delete()
 {
     Tipo.Delete(this, new Telefone(), "IDTipoTelefone");
 }
コード例 #5
0
 public void Delete()
 {
     Tipo.Delete(this, new Documento(), "IDTipoDocumento");
 }
コード例 #6
0
 public void Delete()
 {
     Tipo.Delete(this, new Email(), "IDTipoEmail");
 }
コード例 #7
0
ファイル: Tipos.cs プロジェクト: Didox/MVC_e_Velocit_app
        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();
            }
        }