/// <summary>
 ///     Determines wheter the specified <see cref="MinutiaPair"/> and the current object have the same minutiae. 
 /// </summary>
 /// <param name="obj">
 ///     The <see cref="MinutiaPair"/> to compare with the current object.
 /// </param>
 /// <returns>
 ///     True if the <see cref="QueryMtia"/> and <see cref="TemplateMtia"/> objects of the specified pair have the same values as the <see cref="QueryMtia"/> and <see cref="TemplateMtia"/> objects of the current object respectively.
 /// </returns>
 public bool Equals(MinutiaPair obj)
 {
     if (ReferenceEquals(null, obj)) return false;
     return obj.QueryMtia.Equals(QueryMtia) && obj.TemplateMtia.Equals(TemplateMtia);
 }