BooksSample.Program.ShowChanges C# (CSharp) Method

ShowChanges() private static method

private static ShowChanges ( int id, EntityEntry entity ) : void
id int
entity EntityEntry
return void
        private static void ShowChanges(int id, EntityEntry entity)
        {
            ShowChange(id, entity.Property("Title"));
            ShowChange(id, entity.Property("Publisher"));
        }