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

AddToHours() public method

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