Esempio n. 1
0
        private ICommand FindNext(XTablePortable table, ICommand command)
        {
            FindNextCommand             cmd      = (FindNextCommand)command;
            KeyValuePair <IData, IData>?keyValue = table.FindNext(cmd.Key);

            return(new FindNextCommand(cmd.Key, keyValue));
        }
Esempio n. 2
0
        private ICommand FindNext(XTablePortable table, ICommand command)
        {
            FindNextCommand cmd = (FindNextCommand)command;
            KeyValuePair<IData, IData>? keyValue = table.FindNext(cmd.Key);

            return new FindNextCommand(cmd.Key, keyValue);
        }