예제 #1
0
    public static String save(int type,int tableid, string descripcion, int status)
    {
        clsLst cls = new clsLst();

        string result = "";

        cls.iTableId = tableid;
        cls.sDescription = descripcion;
        cls.iStatus = status;

        result = cls.InsertUpdateTables(type);

        return result;
    }