示例#1
0
        public static string Excluir(int idcomponente)
        {
            ModelComponente Obj = new Model.ModelComponente();

            Obj.IDComponente = idcomponente;
            return(Obj.Excluir(Obj));
        }
示例#2
0
        public static string Inserir(string componente)
        {
            ModelComponente Obj = new Model.ModelComponente();

            Obj.Componente = componente;
            return(Obj.Inserir(Obj));
        }
示例#3
0
        public static string Editar(int idcomponente, string componente)
        {
            ModelComponente Obj = new Model.ModelComponente();

            Obj.IDComponente = idcomponente;
            Obj.Componente   = componente;
            return(Obj.Editar(Obj));
        }