public void Update(int CurrencycloudMarketKey, int Source, int Destination, decimal FeePercentage, decimal?Rate, DateTime?Datechanged, decimal FeeStatic, int Exchangetime)
        {
            CurrencyCloudMarket item = new CurrencyCloudMarket();

            item.MarkOld();
            item.IsLoaded = true;

            item.CurrencycloudMarketKey = CurrencycloudMarketKey;

            item.Source = Source;

            item.Destination = Destination;

            item.FeePercentage = FeePercentage;

            item.Rate = Rate;

            item.Datechanged = Datechanged;

            item.FeeStatic = FeeStatic;

            item.Exchangetime = Exchangetime;

            item.Save(UserName);
        }
 public bool Destroy(object CurrencycloudMarketKey)
 {
     return(CurrencyCloudMarket.Destroy(CurrencycloudMarketKey) == 1);
 }