20 lines
616 B
C#
20 lines
616 B
C#
|
//---------------------------------------------------------------------
|
||
|
// <copyright file="IObjectView.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//
|
||
|
// @owner amirhmy
|
||
|
// @backupOwner dsimmons
|
||
|
//---------------------------------------------------------------------
|
||
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
|
||
|
namespace System.Data.Objects
|
||
|
{
|
||
|
internal interface IObjectView
|
||
|
{
|
||
|
void EntityPropertyChanged(object sender, PropertyChangedEventArgs e);
|
||
|
void CollectionChanged(object sender, CollectionChangeEventArgs e);
|
||
|
}
|
||
|
}
|