partial class NewsDataContext : IUpdatable
{
#region IUpdatable Members
public void AddReferenceToCollection(object targetResource, string propertyName, object resourceToBeAdded)
{
throw new System.NotImplementedException();
}
public void ClearChanges()
{
throw new System.NotImplementedException();
}
public object CreateResource(string containerName, string fullTypeName)
{
throw new System.NotImplementedException();
}
public void DeleteResource(object targetResource)
{
throw new System.NotImplementedException();
}
public object GetResource(System.Linq.IQueryable query, string fullTypeName)
{
throw new System.NotImplementedException();
}
public object GetValue(object targetResource, string propertyName)
{
throw new System.NotImplementedException();
}
public void RemoveReferenceFromCollection(object targetResource, string propertyName, object resourceToBeRemoved)
{
throw new System.NotImplementedException();
}
public object ResetResource(object resource)
{
throw new System.NotImplementedException();
}
public object ResolveResource(object resource)
{
throw new System.NotImplementedException();
}
public void SaveChanges()
{
throw new System.NotImplementedException();
}
public void SetReference(object targetResource, string propertyName, object propertyValue)
{
throw new System.NotImplementedException();
}
public void SetValue(object targetResource, string propertyName, object propertyValue)
{
throw new System.NotImplementedException();
}
#endregion
}