public static string Excluir(int idcomponente) { ModelComponente Obj = new Model.ModelComponente(); Obj.IDComponente = idcomponente; return(Obj.Excluir(Obj)); }
public static string Inserir(string componente) { ModelComponente Obj = new Model.ModelComponente(); Obj.Componente = componente; return(Obj.Inserir(Obj)); }
public static string Editar(int idcomponente, string componente) { ModelComponente Obj = new Model.ModelComponente(); Obj.IDComponente = idcomponente; Obj.Componente = componente; return(Obj.Editar(Obj)); }