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

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

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

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