public void UpdateRegion(Region region) { var oldRegion = GetRegion(region.Id); oldRegion.Name = region.Name; oldRegion.Description = region.Description; regionRepo.SaveChanges(); }
/// <summary> /// Create a new Region object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="objectInfo">Initial value of the ObjectInfo property.</param> public static Region CreateRegion(global::System.Int32 id, global::System.String name, ObjectInfo objectInfo) { Region region = new Region(); region.Id = id; region.Name = name; region.ObjectInfo = StructuralObject.VerifyComplexObjectIsNotNull(objectInfo, "ObjectInfo"); return region; }
public static RegionModel FromDomainModel(Region region) { return new RegionModel { Id = region.Id, Name = region.Name, Description = region.Description }; }
/// <summary> /// Deprecated Method for adding a new object to the Regions EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToRegions(Region region) { base.AddObject("Regions", region); }