public TableOperationContext(AddWithFileCommand <T> FileController, CommandType type)
        {
            this.FileController = FileController;
            this.type           = type;

            contextVoid = CommandVoidContext.getContext();
        }
Beispiel #2
0
        public void RemoveTable(T table)
        {
            CommandVoidContext singleContext = CommandVoidContext.getContext();

            singleContext.DoAddCommand(table, EntityState.Deleted);
        }