public Identity(string email, FacialFeatures facialFeatures) { Email = email; FacialFeatures = facialFeatures; }
public static bool AreSameFace(FacialFeatures faceA, FacialFeatures faceB) { return(faceA.Equals(faceB)); }
protected bool Equals(FacialFeatures other) { return(EyeColor == other.EyeColor && PhiltrumWidth.Equals(other.PhiltrumWidth)); }