/// <summary> /// Deprecated Method for adding a new object to the CVs EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCVs(CV cV) { base.AddObject("CVs", cV); }
/// <summary> /// Create a new CV object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="city">Initial value of the City property.</param> /// <param name="area">Initial value of the Area property.</param> /// <param name="country">Initial value of the Country property.</param> /// <param name="summary">Initial value of the Summary property.</param> public static CV CreateCV(global::System.Int32 id, global::System.String city, global::System.String area, global::System.String country, global::System.String summary) { CV cV = new CV(); cV.Id = id; cV.City = city; cV.Area = area; cV.Country = country; cV.Summary = summary; return cV; }