public void Insert(int InfoCurrencyCloudTokensKey,string InfoCurrencyCloudTokenX,DateTime? Lastchanged)
        {
            InfoCurrencyCloudToken item = new InfoCurrencyCloudToken();

            item.InfoCurrencyCloudTokensKey = InfoCurrencyCloudTokensKey;

            item.InfoCurrencyCloudTokenX = InfoCurrencyCloudTokenX;

            item.Lastchanged = Lastchanged;

            item.Save(UserName);
        }
        public void Update(int InfoCurrencyCloudTokensKey,string InfoCurrencyCloudTokenX,DateTime? Lastchanged)
        {
            InfoCurrencyCloudToken item = new InfoCurrencyCloudToken();
            item.MarkOld();
            item.IsLoaded = true;

            item.InfoCurrencyCloudTokensKey = InfoCurrencyCloudTokensKey;

            item.InfoCurrencyCloudTokenX = InfoCurrencyCloudTokenX;

            item.Lastchanged = Lastchanged;

            item.Save(UserName);
        }