/// <summary> /// Create a new Service object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="monthlyFee">Initial value of the MonthlyFee property.</param> public static Service CreateService(global::System.Int32 id, global::System.String name, global::System.Decimal monthlyFee) { Service service = new Service(); service.Id = id; service.Name = name; service.MonthlyFee = monthlyFee; return service; }
/// <summary> /// Deprecated Method for adding a new object to the ServiceSet EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToServiceSet(Service service) { base.AddObject("ServiceSet", service); }