Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/21/10 06:29:00 (14 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients/OKBItem.cs

    r4441 r4456  
    2929namespace HeuristicLab.Clients.OKB {
    3030  [Item("OKBItem", "Base class for all OKB items.")]
    31   [DataContract(IsReference = true)]
    32   public abstract class OKBItem : IOKBItem {
     31  public partial class OKBItem : IOKBItem {
    3332    public virtual string ItemName {
    3433      get { return ItemAttribute.GetName(this.GetType()); }
     
    7877      OKBItem clone = (OKBItem)Activator.CreateInstance(this.GetType(), true);
    7978      cloner.RegisterClonedObject(this, clone);
     79      //      clone.Id = Id;
    8080      return clone;
    8181    }
     
    9090    }
    9191
    92     public event PropertyChangedEventHandler PropertyChanged;
    9392    protected void RaisePropertyChanged(string propertyName) {
    9493      OnPropertyChanged(new PropertyChangedEventArgs(propertyName));
Note: See TracChangeset for help on using the changeset viewer.