public static bool DeleteChild(int itemId)
    {
        bool saved = false;

        try
        {
            saved = MasterData.AllocationGroup_DeleteChild(itemId);
        }
        catch (Exception ex)
        {
        }
        return(saved);
    }