示例#1
0
    public void DeletePublication(int UniqueID)
    {
        TableOpreatorClass oTable = new TableOpreatorClass();

        oTable.DeleteValueFromTable("UniqueID", UniqueID, "Publication");
    }
示例#2
0
    public void DeletePublicationList(int ID)
    {
        TableOpreatorClass oTable = new TableOpreatorClass();

        oTable.DeleteValueFromTable("ID", ID, "PublicationList");
    }
示例#3
0
    public void DeleteWall(int WallID)
    {
        TableOpreatorClass oTable = new TableOpreatorClass();

        oTable.DeleteValueFromTable("ID", WallID, "Wall");
    }