Esempio n. 1
0
    public void DeletePublication(int UniqueID)
    {
        TableOpreatorClass oTable = new TableOpreatorClass();

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

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

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