/// <summary>
 /// Initializes a new instance of the <see cref="DtoResolveHelper"/> class.
 /// </summary>
 /// <param name="instanceInfo">
 /// The instance Info tuple that holds the type name and identifier.
 /// </param>
 public DtoResolveHelper(DtoInfo instanceInfo)
 {
     this.InstanceInfo = instanceInfo;
 }
Exemple #2
0
 /// <summary>
 /// The equals.
 /// </summary>
 /// <param name="obj">
 /// The object to compare with.
 /// </param>
 /// <returns>
 /// The <see cref="bool"/>.
 /// </returns>
 public bool Equals(DtoInfo obj)
 {
     return(obj != null && obj.TypeName == this.TypeName && obj.Iid == this.Iid);
 }