public override bool Equals(object obj) { var other = obj as Money; if (other == null) { return(false); } if (Value != other.Value || !At.EqualsDate(other.At)) { return(false); } return(true); }