Esempio n. 1
0
        public void UpdateTable(DBTable currentTable)
        {
            if (ServiceCallConfig == ServiceCallConfigType.AllServiceCallsOff ||
                ServiceCallConfig == ServiceCallConfigType.UpdateServicesNoSend)
            {
                return;
            }
            List <DBTable> tablesToUpdate = new List <DBTable> {
                currentTable
            };

            waiterClient.UpdateTables(tablesToUpdate, (decimal)Users.Instance.LoggedInUser.UserId);
        }