Testing.AdventureWorksEntities.AddToCurrencies C# (CSharp) Method

AddToCurrencies() public method

Deprecated Method for adding a new object to the Currencies EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToCurrencies ( Currency currency ) : void
currency Currency
return void
        public void AddToCurrencies(Currency currency)
        {
            base.AddObject("Currencies", currency);
        }
    
AdventureWorksEntities