Epiworx.Data.EntityFramework.ApplicationEntities.AddToTimelines C# (CSharp) Method

AddToTimelines() public method

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