Files
linux-packaging-mono/mcs/class/referencesource/System.Data.Entity/System/Data/Objects/IObjectView.cs

20 lines
616 B
C#
Raw Normal View History

//---------------------------------------------------------------------
// <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);
}
}