Ejemplo n.º 1
0
 public Anomaly(Ichangable item, string message, string propertyInFailed, StatusKind status)
 {
     this.Item         = item;
     this.Message      = message;
     this.PropertyName = propertyInFailed;
     this.Status       = status;
 }
Ejemplo n.º 2
0
 public void Alter(IchangeVisitor visitor, Ichangable source, string propertyName)
 {
     visitor.Alter(this, source as PackageModel, propertyName);
 }
Ejemplo n.º 3
0
 public void Alter(IchangeVisitor visitor, Ichangable source, string propertyName)
 {
     visitor.Alter(this, source as TypeItem, propertyName);
 }
Ejemplo n.º 4
0
 public void Alter(IchangeVisitor visitor, Ichangable source, string propertyName)
 {
     visitor.Drop(this);
     visitor.Create(this);
 }
Ejemplo n.º 5
0
 public abstract void Alter(PrivilegeModel Ichangable, Ichangable privilegeModel2, string propertyName);