MvcMusicStore.Models.MusicStoreEntities.AddToCarts C# (CSharp) Method

AddToCarts() public method

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